Django: Unable to connect to Microsoft SQL Server
I am unable to connect to the MS SQL server using Django (Version- 1.11.3) Here is the error, I seem to be getting: django.db.utils.OperationalError: ('08001', u'[08001] [unixODBC][FreeTDS][SQL Server]Unable to connect to data source (0) (SQLDriverConnect)') This is the odbcinst.ini file: [FreeTDS] Description=TDS driver (Sybase/MS SQL) Driver=/usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so Setup=/usr/lib/x86_64-linux-gnu/odbc/libtdsS.so CPTimeout= CPReuse= UsageCount=2 This is the django settings.py snippet: DATABASES = { 'mssql': { 'ENGINE':'sql_server.pyodbc', 'NAME': '<NAME>', 'USER': '<USER>