Install SQL Server Machine Learning Services (Python and R) on Docker
Applies to: SQL Server 2019 (15.x) - Linux
This article explains how to install SQL Server Machine Learning Services on Docker. You can use Machine Learning Services to execute Python and R scripts in-database. We do not provide pre-built containers with Machine Learning Services. You can create one from the SQL Server containers using an example template available on GitHub.
Prerequisites
Git command-line interface.
Docker Engine 1.8+ on any supported Linux distribution. For more information, see Get Docker. SQL Server in containers are not supported on Windows or macOS for production use.
See also the system requirements for SQL Server on Linux.
Clone the mssql-docker repository
The following command clones the mssql-docker
git repository to a local directory.
Open a Bash terminal on Linux or Mac.
Create a directory to hold a local copy of the mssql-docker repository.
Run the git clone command to clone the mssql-docker repository:
git clone https://github.com/microsoft/mssql-docker mssql-docker
Build a SQL Server Linux container image
Complete the following steps to build the docker image:
Change the directory to the mssql-mlservices directory:
/mssql-docker/linux/preview/examples/mssql-mlservices
In the same directory, run the following command:
docker build -t mssql-server-mlservices .
Run the command:
Important
The
SA_PASSWORD
environment variable is deprecated. UseMSSQL_SA_PASSWORD
instead.docker run -d -e MSSQL_PID=Developer -e ACCEPT_EULA=Y -e ACCEPT_EULA_ML=Y -e MSSQL_SA_PASSWORD=<password> -v <directory on the host OS>:/var/opt/mssql -p 1433:1433 mssql-server-mlservices
Note
Any of the following values can be used for MSSQL_PID: Developer (free), Express (free), Enteprise (paid), Standard (paid). If you are using a paid edition, please ensure that you have purchased a license. Replace (password) with your actual password. Volume mounting using -v is optional. Replace (directory on the host OS) with an actual directory where you want to mount the database data and log files.
Confirm by running the following command:
docker ps -a
Note
To build the Docker image, you must install packages that are several GBs in size. The script might take some time to finish running, depending on network bandwidth.
Run the SQL Server Linux container image
Set your environment variables before running the container. Set the PATH_TO_MSSQL environment variable to a host directory:
export MSSQL_PID='Developer' export ACCEPT_EULA='Y' export ACCEPT_EULA_ML='Y' export PATH_TO_MSSQL='/home/mssql/'
Note
The process for running production SQL Server editions in containers is slightly different. For more information, see Configure SQL Server container images on Docker. If you use the same container names and ports, the rest of this walkthrough still works with production containers.
To view your containers, run the
docker ps
command:sudo docker ps -a
If the STATUS column shows a status of Up, 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.
Output:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 941e1bdf8e1d mcr.microsoft.com/mssql/server/mssql-server-linux "/bin/sh -c /opt/m..." About an hour ago Up About an hour 0.0.0.0:1401->1433/tcp sql1
Enable Machine Learning Services
To enable Machine Learning Services, connect to your SQL Server instance and run the following T-SQL statement:
EXEC sp_configure 'external scripts enabled', 1;
RECONFIGURE WITH OVERRIDE
Related content
Python developers can learn how to use Python with SQL Server by following these tutorials:
- Python tutorial: Predict ski rental with linear regression in SQL Server Machine Learning Services
- Python tutorial: Categorizing customers using k-means clustering with SQL Server Machine Learning Services
R developers can get started with some simple examples, and learn the basics of how R works with SQL Server. For your next step, see the following links: