मैंने एक वैग्रांट बॉक्स बनाया है जिसमें एक पूर्ण इंस्टॉलेशन उदाहरण है:https://github .com/FlipperPA/django-python3-vagrant/
...लेकिन यहां बुनियादी चरण दिए गए हैं।
# Install pre-requesite packages
sudo apt-get install unixodbc unixodbc-dev freetds-dev freetds-bin tdsodbc
odbcinst.ini ड्राइवर को /etc/odbcinst.ini में इंगित करें:
[FreeTDS]
Description = v0.91 with protocol v7.2
Driver = /usr/lib/x86_64-linux-gnu/odbc/libtdsodbc.so
odbc.ini में अपना DSN बनाएं:
[dbserverdsn]
Driver = FreeTDS
Server = dbserver.domain.com
Port = 1433
TDS_Version = 7.2
...और आपके DSN freetds.conf में:
[global]
# TDS protocol version, use:
# 7.3 for SQL Server 2008 or greater (tested through 2014)
# 7.2 for SQL Server 2005
# 7.1 for SQL Server 2000
# 7.0 for SQL Server 7
tds version = 7.2
port = 1433
# Whether to write a TDSDUMP file for diagnostic purposes
# (setting this to /tmp is insecure on a multi-user system)
; dump file = /tmp/freetds.log
; debug flags = 0xffff
# Command and connection timeouts
; timeout = 10
; connect timeout = 10
# If you get out-of-memory errors, it may mean that your client
# is trying to allocate a huge buffer for a TEXT field.
# Try setting 'text size' to a more reasonable limit
text size = 64512
# A typical Microsoft server
[dbserverdsn]
host = dbserver.domain.com
port = 1433
tds version = 7.2
इसे पूरा करने के बाद, आप tsql (फ्रीटीडीएस परत का परीक्षण करने के लिए) और isql (फ्रीटीडीएस स्टैक के माध्यम से यूनिक्सोडबीसी के लिए) से जुड़ने का प्रयास करके अपने कनेक्शन का परीक्षण कर सकते हैं।