MSSQL Installation on Linux in 3 Minutes

5 months ago
10

This video provides a straightforward guide to installing MSSQL 2022 on Ubuntu Linux 20.04. The comprehensive script is readily available for copying and pasting, allowing you to replicate the installation on your own server. Testing can be performed in various environments, including VirtualBox, VMware, Docker, free or paid cloud VPS. This video is specifically tailored for beginners in Linux with limited experience.

Linux script after SU

curl https://packages.microsoft.com/keys/microsoft.asc | sudo tee /etc/apt/trusted.gpg.d/microsoft.asc

add-apt-repository "$(wget -qO- https://packages.microsoft.com/config/ubuntu/20.04/mssql-server-2022.list)"

apt-get update
apt-get install -y mssql-server

/opt/mssql/bin/mssql-conf setup

systemctl status mssql-server

apt install net-tools -y

netstat -tulpn

drop by my github for more tutorial
https://github.com/edwinwcw2021/linux-mssql-20.04-installation-script/

I appreciate your interest in my work! If you found this video valuable, please leave a like and subscribe. It motivates me to continue developing and sharing my knowledge.

Loading comments...