Skip to content

Instantly share code, notes, and snippets.

@rajibdpi
Forked from ernestasju/_.sh
Last active October 22, 2019 15:28
Show Gist options
  • Save rajibdpi/6627e8551073dcc316de7030a4c16010 to your computer and use it in GitHub Desktop.
Save rajibdpi/6627e8551073dcc316de7030a4c16010 to your computer and use it in GitHub Desktop.
Install SQL Server 2017 on Ubuntu
sudo apt-get update
sudo apt-get install apt-transport-https ca-certificates curl software-properties-common
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
sudo add-apt-repository "$(curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server.list)"
sudo apt-get update
sudo apt-get install -y mssql-server
sudo /opt/mssql/bin/mssql-conf setup
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment