I used the official tutorial to create a default instance https://learn.microsoft.com/en-us/sql/linux/sql-server-linux-setup-ubuntu
but now I want to create a named-instance and can't find how to do that
I used the official tutorial to create a default instance https://learn.microsoft.com/en-us/sql/linux/sql-server-linux-setup-ubuntu
but now I want to create a named-instance and can't find how to do that
SQL Server on Linux doesn't support the notion of "multi-instance", so there are no named instances on Linux.
You can see that its Windows only feature here: https://learn.microsoft.com/en-us/sql/sql-server/install/work-with-multiple-versions-and-instances-of-sql-server?view=sql-server-ver15
© 2022 - 2024 — McMap. All rights reserved.
sqlservr-setup
?apt-get install
only installs the package. Assuming this is implemented, the functionality should be available throughsqlservr-setup
– Cookysudo /opt/mssql/bin/sqlservr-setup --help Microsoft(R) SQL Server(R) Setup This utility helps configure Microsoft(R) SQL Server(R). Without options this tool will perform interactive configuration. Usage: sqlservr-setup [--help] [--accept-eula] [--reset-sa-password] [--set-sa-password] [--start-service] [--enable-service] [--stop-service] [--disable-service] Options: --help This help screen. --accept-eula Accept EULA
– Polyethylene