Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register todayThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Applies to:
SQL Server - Linux
Follow the steps in this article to install SQL Server Integration Services (mssql-server-is) on Linux. For more information about the features that are supported in Integration Services for Linux, see:
You can install SQL Server Integration Services (SSIS) on Red Hat Enterprise Linux (RHEL) and Ubuntu. SUSE Linux Enterprise Server (SLES) isn't supported. Installing SSIS on containers is also not supported.
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.repo
Run the following command to install SQL Server Integration Services.
sudo yum install -y mssql-server-is
After installation, run ssis-conf. For more info, see Configure SQL Server Integration Services on Linux with ssis-conf.
sudo /opt/ssis/bin/ssis-conf setup
After 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/8/mssql-server-2019.repo
Run the following command to install SQL Server Integration Services.
sudo yum install -y mssql-server-is
After installation, run ssis-conf. For more info, see Configure SQL Server Integration Services on Linux with ssis-conf.
sudo /opt/ssis/bin/ssis-conf setup
After 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/8/mssql-server-2022.repo
Run the following command to install SQL Server Integration Services.
sudo yum install -y mssql-server-is
After installation, run ssis-conf. For more info, see Configure SQL Server Integration Services on Linux with ssis-conf.
sudo /opt/ssis/bin/ssis-conf setup
After the configuration is done, set the PATH
environment variable.
export PATH=/opt/ssis/bin:$PATH
If you already have mssql-server-is installed, update to the latest version by using the following command:
sudo yum update mssql-server-is
To remove mssql-server-is, run the following command:
sudo yum remove mssql-server-is
To run ssis-conf setup unattended (RHEL and Ubuntu only), do the following steps:
-n
(no prompt) option.The following example does these actions:
SSIS_PID
environment variableACCEPT_EULA
environment variable-n
(no prompt) optionsudo SSIS_PID=Developer ACCEPT_EULA=Y /opt/ssis/bin/ssis-conf -n setup
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: - Evaluation - Developer - Express - Web - Standard - Enterprise - A product key If you specify a product key, it must be in the form #####-#####-#####-#####-##### , where # is a letter or a digit. |
Events
Mar 31, 11 PM - Apr 2, 11 PM
The biggest SQL, Fabric and Power BI learning event. March 31 – April 2. Use code FABINSIDER to save $400.
Register today