Linux

Install SQL SERVER and Azure Data Studio in Ubuntu



This is a tutorial on how to install Microsoft SQL Server in Ubuntu.

Source Link:

1. First we need to make sure that we update our ubuntu
sudo apt update && sudo apt upgrade

2. Next, we need to import the Microsoft GPG key to ensure the authenticity of the packages we’ll be downloading.

wget -qO- | sudo apt-key add –

3. To install Microsoft SQL Server on Ubuntu, we need to register the SQL Server Ubuntu repository.

sudo add-apt-repository “$(wget -qO-

4. Install Microsoft SQL Server
sudo apt update
sudo apt install -y mssql-server

5: Configure Microsoft SQL Server

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

Finally our SQL SERVER SETUP is complete
you can now starting using the SQL SERVER Application

Step 6: Verify the Installation
systemctl status mssql-server –no-pager

My Other Channel:

Buy me a coffee:

Join my facebook group for more:

[ad_2]

source

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

Back to top button