Ich versuche, den ODBC-Treiber für Debian gemäß den folgenden Anweisungen zu installieren: https://blog.afoolishmanifesto.com/posts/install-and-configure-the-ms-odbc-driver-on-debian/
Wenn ich jedoch tippe sqlcmd -S localhost
, wird der Fehler angezeigt libcrypto.so.10: cannot open shared object file: No such file or directory
.
Was ist zu tun? Ich habe es versucht
$ cd /usr/lib $ sudo ln -s libssl.so.0.9.8 libssl.so.10 $ sudo ln -slibcrypto.so.0.9.8 libcrypto.so.10
In
/usr/local/lib64
auf die/etc/ld.so.conf.d/doubango.conf
Dateisudo 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
aber keiner von denen half.
ldd libsqlncli-11.0.so.1790.0
?Antworten:
Punkt 3 ist nah. Sie sollten jedoch tun
quelle