I am trying to install ODBC driver for Debian according to those instructions: https://blog.afoolishmanifesto.com/posts/install-and-configure-the-ms-odbc-driver-on-debian/
However, when I type sqlcmd -S localhost
, I get the error libcrypto.so.10: cannot open shared object file: No such file or directory
.
What to do? I tried
$ cd /usr/lib $ sudo ln -s libssl.so.0.9.8 libssl.so.10 $ sudo ln -slibcrypto.so.0.9.8 libcrypto.so.10
Add
/usr/local/lib64
to the/etc/ld.so.conf.d/doubango.conf
filesudo apt-get update sudo apt-get install libssl1.0.0 libssl-dev cd /lib/x86_64-linux-gnu sudo ln -s libssl.so.1.0.0 libssl.so.10 sudo ln -s libcrypto.so.1.0.0 libcrypto.so.10
sudo apt-get install libssl0.9.8:i386
but none of those helped.
ldd libsqlncli-11.0.so.1790.0
? – Braiam Dec 21 '14 at 10:52