MsSql: Difference between revisions
Jump to navigation
Jump to search
Line 9: | Line 9: | ||
</pre> | </pre> | ||
Validate dependencies. | |||
<pre> | <pre> | ||
apt-get install | cd msodbcsql-11.0.2270.0 | ||
ldd ./lib64/libsqlncli-11.0.so.1720.0 | |||
</pre> | |||
Install libssl1.0.0 to get libssl and crypto library | |||
<pre> | |||
apt-get install libssl1.0.0 | |||
</pre> | |||
Link missing library | |||
<pre> | |||
cd /usr/lib/x86_64-linux-gnu | |||
ln -s libssl.so libssl.so.10 | |||
ln -s libcrypto.so libcrypto.so.10 | |||
</pre> | </pre> |
Revision as of 15:53, 19 June 2015
Native Linux ODBC Driver
Installation
Download "Microsoft ODBC Driver 11 for SQL Server on Linux" at Technet Microsoft Choose Redhat 6 version.
Extract the Archive
tar xvzf msodbcsql-11.0.2270.0.tar.gz
Validate dependencies.
cd msodbcsql-11.0.2270.0 ldd ./lib64/libsqlncli-11.0.so.1720.0
Install libssl1.0.0 to get libssl and crypto library
apt-get install libssl1.0.0
Link missing library
cd /usr/lib/x86_64-linux-gnu ln -s libssl.so libssl.so.10 ln -s libcrypto.so libcrypto.so.10