Patched Download Odbc Driver 17 For Sql Server Ubuntu «ORIGINAL ✮»
If unixodbc errors occur, install unixodbc-dev .
curl https://packages.microsoft.com/keys/microsoft.asc | sudo gpg --dearmor -o /usr/share/keyrings/microsoft-prod.gpg Use code with caution.
This guide provides a step-by-step walkthrough to download and install version 17 on various Ubuntu versions, including 18.04, 20.04, 22.04, and the latest releases. Step 1: Add Microsoft Repository and GPG Key download odbc driver 17 for sql server ubuntu
Register the official Microsoft repository to ensure you receive verified binaries and future updates.
sudo apt-get update sudo ACCEPT_EULA=Y apt-get install -y msodbcsql17 Use code with caution. Step 3: Install Tools (Optional) Install mssql-tools for command-line utilities like sqlcmd : If unixodbc errors occur, install unixodbc-dev
If you need to connect your Linux applications to a Microsoft SQL Server or Azure SQL Database, the is the industry-standard choice.
sudo ACCEPT_EULA=Y apt-get install -y mssql-tools echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc source ~/.bashrc Use code with caution. Step 4: Verify Installation Verify the driver is registered: odbcinst -q -d -n "ODBC Driver 17 for SQL Server" Use code with caution. Troubleshooting Step 1: Add Microsoft Repository and GPG Key
curl https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list Use code with caution. Step 2: Install ODBC Driver 17
Select the command for your Ubuntu version (e.g., 20.04, 22.04, or 24.04):
Update your package list and install the driver, accepting the EULA: