How to install Microsoft SQL Server for Linux (fedora)?

How to install Microsoft SQL Server for Linux (fedora)? I read about Microsoft® SQL Server® ODBC Driver 1.0 for Linux , but did not understand what it is. I wanted to connect to sql server for a java application running on Linux.

+4
source share
3 answers

Microsoft® SQL Server® ODBC Driver 1.0 for Linux is a Linux driver for native communication with the MSSQL Server database.

MSSQL will only work on Windows .

+15
source

AFAIK, you cannot install MSSQL on Linux, only on Windows. The solution would be to install Windows as a virtual machine and use the ODBC driver (which will help you connect to MSSQL programmatically), which you found and use on Linux

+7
source

You can currently install SQL Server on Linux, but so far, only for Red Hat and Ubuntu and is still in beta.

Listed below are links

How to install SQL Server on Ubuntu and Red Hat

Install SQL Server on Red Hat

Install SQL Server on Ubuntu

+1
source

Source: https://habr.com/ru/post/1434754/


All Articles