Can I install SQL server in linux? how do I install it [closed]

1

I CAN NOT INSTALL SQL SERVER IN THE LINUX OPERATING SYSTEM

    
asked by DanielRoa 09.08.2017 в 03:33
source

1 answer

3

If you can.

In Ubuntú for example:

  • Import PGP key:

    curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -

  • Register the server in the repository

    sudo add-apt-repository "$(curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server.list)"

  • Update apt and install the server:

    sudo apt-get update

    sudo apt-get install -y mssql-server

  • Set up your server:

    sudo /opt/mssql/bin/mssql-conf setup

  • Verify that the service is running:

    systemctl status mssql-server

Enjoy your SQL server.

You can find the documentation here

    
answered by 09.08.2017 в 04:09