Topics — MS SQL Server on Linux
Thumbnail Logo

Microsoft SQL Server on Linux platforms ? Impossible, the engine is too dependent on the Windows operating system !

Microsoft did it, SQL Server 2017 is available on Linux platforms. Who would have believed it 10 years ago ?

Changing the SQL Server 2019 port on Linux and using SQL Server aliases on the client hosts June 1st, 2019
Thumbnail LogoMicrosoft SQL Server located in a WAN/DMZ area and running on its default port 1433 is vulnerable to attacks. In this article the port of SQL Server 2019, installed on Linux Ubuntu, is modified with the utility mssql-conf. The (automated) deployment of SQL Server aliases on client hosts when changing the server port drastically reduces negative impacts.
SQL Server 2019 on Linux, configuring SSL connections June 1st, 2019
Thumbnail LogoModifying the port of SQL Server installed on a WAN/DMZ area is not enough from a security point of view, it decreases potential attacks but does not prevent some sniffer tools from reading TCP packets. How to encrypt the packets with SSL / TLS 1.2 for SQL Server on Linux ? Steps are easy with openssl and mssql-conf utility. The encryption is initiated and forced by the SQL Server engine using a self-signed certificate.
Microsoft SQL Server 2019 on Ubuntu - SQL Server Agent May 31st, 2019
Thumbnail LogoAnd the SQL Server Agent on Linux? Yes, BUT… If the configuration and activation of the SQL Server Agent are very simple with mssql-conf, controlling it is much less. On Linux, the SQL Server Agent is not associated with a dedicated service like on Windows with significant consequences.
Managing SQL Server 2019 service on Ubuntu with systemctl May 31st, 2019
Thumbnail LogoIn the default architecture, SQL Server 2019 runs with the account mssql. When trying to stop/start/restart the service mssql-server with systemctl, the password is prompted. We may want to allow mssql to manage its own service without password prompts. 2 solutions are available : defining mssql-server as a user service with the account mssql or granting rights with no password on the system service mssql-server to the user mssql through sudo.
Troubleshooting a startup issue of SQL Server 2019 on Ubuntu linked to user root action error May 31st, 2019
Thumbnail LogoALWAYS start the SQL Server engine on Linux with the mssql account. NEVER run the sqlservr binary directly as root. Indeed, the engine can not then be restarted normally with the account mssql. The diagnosis is not as simple as usual in this kind of problem, permissions are altered for hidden binary system files of SQL Server (security.hiv…).
Microsoft SQL Server 2019 on Linux Ubuntu 18.04, installation and configuration May 29th, 2019
Thumbnail LogoWho would have believe it in 2009, 10 years ago, Microsoft SQL Server 2019 on Linux platforms ! On Ubuntu 18.04, a SQL Server 2019 instance is installed and configured with mssql-conf. Since the majority of companies implement firewalls to prevent servers from communicating with the outside world, installations are performed in offline mode with the *.deb packages provided by Microsoft. Database files are not created in the default directory. After the installation, 2 tests are first carried out: restoration on SQL Server 2019/Linux of a database from its SQL Server 2016/Windows backup and a table export/import using bcp in native mode from SQL Server 2016/Windows to SQL Server 2019/Linux. These 2 tests will show whether or not it is easy, in this cross-platform context, to migrate databases from SQL Server 2016 on Windows to SQL Server 2019 on Linux.