7

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

5
  • 2
    I wonder who downvotes questions about a developer-only preview that has more documentation in SO Docs than Microsoft's own docs site? It's definitely not an administration question - there are no administration tools available yet! Commented Jan 17, 2017 at 11:07
  • 1
    Can you check the parameters of sqlservr-setup ? apt-get install only installs the package. Assuming this is implemented, the functionality should be available through sqlservr-setup Commented Jan 17, 2017 at 11:08
  • sudo /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 Commented Jan 17, 2017 at 11:20
  • ` --reset-sa-password Reset SA password interactively --set-sa-password Set SA password from SA_PASSWORD environment variable --start-service Start the SQL Server service --enable-service Enable the SQL Server service to start at boot --stop-service Stop the SQL Server service --disable-service Disable the SQL Server service from starting at boot ` Commented Jan 17, 2017 at 11:21
  • @PanagiotisKanavos, I added the help of this command from the termainal. can't see any relevant config. should I search in other place? Commented Jan 17, 2017 at 11:22

1 Answer 1

7

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

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.