Install SQL Server Integration Services (SSIS) on Linux
Applies to:
SQL Server (all supported versions) - Linux
Follow the steps in this article to install SQL Server Integration Services (mssql-server-is) on Linux. For info about the features that are supported in this release of Integration Services for Linux, see the Release Notes.
You can install SQL Server Integration Services on these platforms:
Install SSIS on Ubuntu
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 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-isAfter installing Integration Services, run ssis-conf. For more info, see Configure SSIS on Linux with ssis-conf.
sudo /opt/ssis/bin/ssis-conf setupAfter the configuration is done, set the PATH environment variable.
export PATH=/opt/ssis/bin:$PATH
Import the public repository GPG keys.
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -Register the SQL Server Ubuntu repository.
sudo add-apt-repository "$(curl https://packages.microsoft.com/config/ubuntu/16.04/mssql-server-2019.list)"Run the following commands to install SQL Server Integration Services.
sudo apt-get update sudo apt-get install -y mssql-server-isAfter installing Integration Services, run ssis-conf. For more info, see Configure SSIS on Linux with ssis-conf.
sudo /opt/ssis/bin/ssis-conf setupAfter the configuration is done, set the PATH environment variable.
export PATH=/opt/ssis/bin:$PATH
Update SSIS
If you already have mssql-server-is installed, update to the latest version with the following command:
sudo apt-get install mssql-server-is
Remove SSIS
To remove mssql-server-is, run the following command:
sudo apt-get remove mssql-server-is
Install SSIS on RHEL
To install the mssql-server-is package on RHEL, follow these steps:
Download the 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.repoRun the following command to install SQL Server Integration Services.
sudo yum install -y mssql-server-isAfter installation, run ssis-conf. For more info, see Configure SSIS on Linux with ssis-conf.
sudo /opt/ssis/bin/ssis-conf setupAfter the configuration is done, set the PATH environment variable.
export PATH=/opt/ssis/bin:$PATH
Download the 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-2019.repoRun the following command to install SQL Server Integration Services.
sudo yum install -y mssql-server-isAfter installation, run ssis-conf. For more info, see Configure SSIS on Linux with ssis-conf.
sudo /opt/ssis/bin/ssis-conf setupAfter the configuration is done, set the PATH environment variable.
export PATH=/opt/ssis/bin:$PATH
Update SSIS
If you already have mssql-server-is installed, update to the latest version by using the following command:
sudo yum update mssql-server-is
Remove SSIS
To remove mssql-server-is, run the following command:
sudo yum remove mssql-server-is
Unattended installation
To run ssis-conf setup as an unattended installation, do the following steps:
- Specify the -n (no prompt) option.
- Provide required values by setting environment variables.
The following example does these actions:
- Installs SSIS
- Specifies the Developer edition by providing a value for the SSIS_PID environment variable
- Accepts the Microsoft Software License Terms by providing a value for the ACCEPT_EULA environment variable
- Runs an unattended installation by specifying the -n (no prompt) option
sudo SSIS_PID=Developer ACCEPT_EULA=Y /opt/ssis/bin/ssis-conf -n setup
Environment variables for unattended installation
| Environment variable | Description |
|---|---|
| ACCEPT_EULA | Accepts the SQL Server license terms when set to any value like "Y". |
| SSIS_PID | Sets the SQL Server edition or product key. Here are the possible values:
|
Next steps
To run SSIS packages on Linux, see Extract, transform, and load data for SQL Server on Linux with SSIS.
To configure additional SSIS settings on Linux, see Configure SQL Server Integration Services on Linux with ssis-conf.
Related content about SSIS on Linux
Maklum balas
Kirim dan lihat maklum balas untuk