| title | Install SQL Server Integration Services on Linux | Microsoft Docs |
|---|---|
| description | This topic describes how to install SQL Server Integration Services on Linux. |
| author | leolimsft |
| ms.author | lle |
| ms.reviewer | douglasl |
| manager | craigg |
| ms.date | 10/02/2017 |
| ms.topic | article |
| ms.prod | sql-linux |
| ms.technology | database-engine |
| ms.assetid |
[!INCLUDEtsql-appliesto-sslinux-only]
Follow the steps in this article to install SQL Server Integration Services (mssql-server-is) on Linux. For info about the features supported in this release of Integration Services for Linux, see the Release Notes.
Install SQL Server Integration Servers for your platform:
To install the mssql-server-is package on Ubuntu, follow these steps:
-
Import the public repository GPG keys.
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - -
Register the Microsoft SQL Server Ubuntu repository.
sudo add-apt-repository "$(curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2017.list)" -
Run the following commands to install SQL Server Integration Services.
sudo apt-get update sudo apt-get install -y mssql-server-is
-
After installing Integration Services, run
ssis-conf. For more info, see Configure SSIS on Linux with ssis-conf.sudo /opt/ssis/bin/ssis-conf setup
-
After the configuration is done, set the path.
export PATH=/opt/ssis/bin:$PATH
If you already have mssql-server-is installed, you can update to the latest version with the following command:
sudo apt-get install mssql-server-isTo remove mssql-server-is, you can run following command:
sudo apt-get remove msssql-server-isTo install the mssql-server-is package on RHEL, follow these steps:
-
Download the Microsoft SQL Server Red Hat repository configuration file.
sudo curl -o /etc/yum.repos.d/mssql-server.repo https://packages.microsoft.com/config/rhel/7/mssql-server-2017.repo
-
Run the following commands to install SQL Server Integration Services.
sudo yum install -y mssql-server-is
-
After installation, run
ssis-conf. For more info, see Configure SSIS on Linux with ssis-conf.sudo /opt/ssis/bin/ssis-conf setup
-
Once the configuration is done, set path.
export PATH=/opt/ssis/bin:$PATH
If you already have mssql-server-is installed, you can update to the latest version with the following command:
sudo yum update mssql-server-isTo remove mssql-server-is, you can run following command:
sudo yum remove msssql-server-isCopy the SSIS package to the Linux computer. Then use the following command to run the package.
dtexec /F <package name> /DE <protection password>For more information about how to use SSIS on Linux to extract, transform, and load data, see Extract, transform, and load data for SQL Server on Linux with SSIS.