With SQL Server 2017, you can run SQL Server on Linux, and can even host your own docker container without using Windows at all (I am doing this on my Macs right now - and I wrote about it here). VS Code, Visual Studio, and Operations Studio now run natively on the Mac, so that can work for you too in some scenarios. Easily manage your Azure Storage accounts and subscriptions with Azure Storage Explorer. Visualize your storage with backend access to application log results. SQL Server on Virtual Machines Host enterprise SQL Server apps in the cloud. Easily manage the contents of your storage account with Azure Storage Explorer. Upload, download,. SQL Operations Studio is a free, light-weight tool for modern database development and operations for SQL Server on Windows, Linux and Docker, Azure SQL Database and Azure SQL Data Warehouse on Windows, Mac or Linux machines. Download SQL Operations Studio to get started.
-->In this quickstart, you use Docker to pull and run the SQL Server 2017 container image, mssql-server-linux. Then connect with sqlcmd to create your first database and run queries.
Tip
If you want to try the SQL Server 2019 preview image, see the SQL Server 2019 preview version of this article.
In this quickstart, you use Docker to pull and run the SQL Server 2019 preview container image, mssql-server. Then connect with sqlcmd to create your first database and run queries.
Tip
This quickstart creates SQL Server 2019 preview containers. If you prefer to create SQL Server 2017 containers, see the SQL Server 2017 version of this article.
This image consists of SQL Server running on Linux based on Ubuntu 16.04. It can be used with the Docker Engine 1.8+ on Linux or on Docker for Mac/Windows. This quickstart specifically focuses on using the SQL Server on linux image. The Windows image is not covered, but you can learn more about it on the mssql-server-windows-developer Docker Hub page.
Before starting the following steps, make sure that you have selected your preferred shell (bash, PowerShell, or cmd) at the top of this article.
Pull the SQL Server 2017 Linux container image from Microsoft Container Registry.
Tip
If you want to try the SQL Server 2019 preview image, see the SQL Server 2019 preview version of this article.
The previous command pulls the latest SQL Server 2017 container image. If you want to pull a specific image, you add a colon and the tag name (for example, mcr.microsoft.com/mssql/server:2017-GA-ubuntu
). To see all available images, see the mssql-server Docker hub page.
For the bash commands in this article, sudo
is used. On MacOS, sudo
might not be required. On Linux, if you do not want to use sudo
to run Docker, you can configure a docker group and add users to that group. For more information, see Post-installation steps for Linux.
To run the container image with Docker, you can use the following command from a bash shell (Linux/macOS) or elevated PowerShell command prompt.
Note
The password should follow the SQL Server default password policy, otherwise the container can not setup SQL server and will stop working. By default, the password must be at least 8 characters long and contain characters from three of the following four sets: Uppercase letters, Lowercase letters, Base 10 digits, and Symbols. You can examine the error log by executing the docker logs command.
Note
By default, this creates a container with the Developer edition of SQL Server 2017. The process for running production editions in containers is slightly different. For more information, see Run production container images.
The following table provides a description of the parameters in the previous docker run
example:
Parameter | Description |
---|---|
-e 'ACCEPT_EULA=Y' | Set the ACCEPT_EULA variable to any value to confirm your acceptance of the End-User Licensing Agreement. Required setting for the SQL Server image. |
-e 'SA_PASSWORD=<YourStrong!Passw0rd>' | Specify your own strong password that is at least 8 characters and meets the SQL Server password requirements. Required setting for the SQL Server image. |
-p 1433:1433 | Map a TCP port on the host environment (first value) with a TCP port in the container (second value). In this example, SQL Server is listening on TCP 1433 in the container and this is exposed to the port, 1433, on the host. |
--name sql1 | Specify a custom name for the container rather than a randomly generated one. If you run more than one container, you cannot reuse this same name. |
mcr.microsoft.com/mssql/server:2017-latest | The SQL Server 2017 Linux container image. |
To view your Docker containers, use the docker ps
command.
You should see output similar to the following screenshot:
If the STATUS column shows a status of Up, then SQL Server is running in the container and listening on the port specified in the PORTS column. If the STATUS column for your SQL Server container shows Exited, see the Troubleshooting section of the configuration guide.
The -h
(host name) parameter is also useful, but it is not used in this tutorial for simplicity. This changes the internal name of the container to a custom value. This is the name you'll see returned in the following Transact-SQL query:
Setting -h
and --name
to the same value is a good way to easily identify the target container.
Before starting the following steps, make sure that you have selected your preferred shell (bash, PowerShell, or cmd) at the top of this article.
Pull the SQL Server 2019 preview Linux container image from Docker Hub.
Tip
This quickstart uses the SQL Server 2019 preview Docker image. If you want to run the SQL Server 2017 image, see the SQL Server 2017 version of this article.
The previous command pulls the SQL Server 2019 preview container image based on Ubuntu. To instead use container images based on RedHat, see Run RHEL-based container images. To see all available images, see the mssql-server-linux Docker hub page.
For the bash commands in this article, sudo
is used. On MacOS, sudo
might not be required. On Linux, if you do not want to use sudo
to run Docker, you can configure a docker group and add users to that group. For more information, see Post-installation steps for Linux.
To run the container image with Docker, you can use the following command from a bash shell (Linux/macOS) or elevated PowerShell command prompt.
Note
The password should follow the SQL Server default password policy, otherwise the container can not setup SQL server and will stop working. By default, the password must be at least 8 characters long and contain characters from three of the following four sets: Uppercase letters, Lowercase letters, Base 10 digits, and Symbols. You can examine the error log by executing the docker logs command.
Note
By default, this creates a container with the Developer edition of SQL Server 2019 preview.
The following table provides a description of the parameters in the previous docker run
example:
Parameter | Description |
---|---|
-e 'ACCEPT_EULA=Y' | Set the ACCEPT_EULA variable to any value to confirm your acceptance of the End-User Licensing Agreement. Required setting for the SQL Server image. |
-e 'SA_PASSWORD=<YourStrong!Passw0rd>' | Specify your own strong password that is at least 8 characters and meets the SQL Server password requirements. Required setting for the SQL Server image. |
-p 1433:1433 | Map a TCP port on the host environment (first value) with a TCP port in the container (second value). In this example, SQL Server is listening on TCP 1433 in the container and this is exposed to the port, 1433, on the host. |
--name sql1 | Specify a custom name for the container rather than a randomly generated one. If you run more than one container, you cannot reuse this same name. |
mcr.microsoft.com/mssql/server:2019-CTP3.2-ubuntu | The SQL Server 2019 CTP3.2 Linux container image. |
To view your Docker containers, use the docker ps
command.
You should see output similar to the following screenshot:
If the STATUS column shows a status of Up, then SQL Server is running in the container and listening on the port specified in the PORTS column. If the STATUS column for your SQL Server container shows Exited, see the Troubleshooting section of the configuration guide.
The -h
(host name) parameter is also useful, but it is not used in this tutorial for simplicity. This changes the internal name of the container to a custom value. This is the name you'll see returned in the following Transact-SQL query:
Setting -h
and --name
to the same value is a good way to easily identify the target container.
The SA account is a system administrator on the SQL Server instance that gets created during setup. After creating your SQL Server container, the SA_PASSWORD
environment variable you specified is discoverable by running echo $SA_PASSWORD
in the container. For security purposes, change your SA password.
Choose a strong password to use for the SA user.
Use docker exec
to run sqlcmd to change the password using Transact-SQL. In the following example, replace the old password, <YourStrong!Passw0rd>
, and the new password, <YourNewStrong!Passw0rd>
, with your own password values.
The following steps use the SQL Server command-line tool, sqlcmd, inside the container to connect to SQL Server.
Use the docker exec -it
command to start an interactive bash shell inside your running container. In the following example sql1
is name specified by the --name
parameter when you created the container.
Once inside the container, connect locally with sqlcmd. Sqlcmd is not in the path by default, so you have to specify the full path.
Tip
You can omit the password on the command-line to be prompted to enter it.
If successful, you should get to a sqlcmd command prompt: 1>
.
The following sections walk you through using sqlcmd and Transact-SQL to create a new database, add data, and run a simple query.
The following steps create a new database named TestDB
.
From the sqlcmd command prompt, paste the following Transact-SQL command to create a test database:
On the next line, write a query to return the name of all of the databases on your server:
The previous two commands were not executed immediately. You must type GO
on a new line to execute the previous commands:
Next create a new table, Inventory
, and insert two new rows.
From the sqlcmd command prompt, switch context to the new TestDB
database:
Create new table named Inventory
:
Insert data into the new table:
Type GO
to execute the previous commands:
Avi player download for mac. Avi player mac free download - Free Mac AVI Player, Free Mac AVI Player, Mac Media Player, and many more programs.
Now, run a query to return data from the Inventory
table.
From the sqlcmd command prompt, enter a query that returns rows from the Inventory
table where the quantity is greater than 152:
Execute the command:
To end your sqlcmd session, type QUIT
:
To exit the interactive command-prompt in your container, type exit
. Your container continues to run after you exit the interactive bash shell.
You can also connect to the SQL Server instance on your Docker machine from any external Linux, Windows, or macOS tool that supports SQL connections.
The following steps use sqlcmd outside of your container to connect to SQL Server running in the container. These steps assume that you already have the SQL Server command-line tools installed outside of your container. The same principles apply when using other tools, but the process of connecting is unique to each tool.
Find the IP address for the machine that hosts your container. On Linux, use ifconfig or ip addr. On Windows, use ipconfig.
For this example, install the sqlcmd tool on your client machine. For more information, see Install sqlcmd on Windows or Install sqlcmd on Linux.
Run sqlcmd specifying the IP address and the port mapped to port 1433 in your container. In this example, that is the same port, 1433, on the host machine. If you specified a different mapped port on the host machine, you would use it here.
Run Transact-SQL commands. When finished, type QUIT
.
Other common tools to connect to SQL Server include:
If you want to remove the SQL Server container used in this tutorial, run the following commands:
Warning
Stopping and removing a container permanently deletes any SQL Server data in the container. If you need to preserve your data, create and copy a backup file out of the container or use a container data persistence technique.
After you have tried using the SQL Server container image for Docker, you might want to know how Docker is used to improve development and testing. The following video shows how Docker can be used in a continuous integration and deployment scenario.
For a tutorial on how to restore database backup files into a container, see Restore a SQL Server database in a Linux Docker container. To explore other scenarios, such as running multiple containers, data persistence, and troubleshooting, see Configure SQL Server container images on Docker.
Also, check out the mssql-docker GitHub repository for resources, feedback, and known issues.