您好,登錄后才能下訂單哦!
本篇文章給大家分享的是有關libssl.so.10缺失庫文件的解決辦法是什么,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。
在RHEL6.5中對openssl進行了升級,如果老版本是OpenSSL 1.0.1e-fips,那直接安裝最新的openssl-1.0.1g-1.x86_64.rpm就行了,但是如果老版本低于1.0.1e,那直接安裝1.0.1g版本就會出缺失libssl.so.10和libcrypto.so.10庫文件的問題,在啟動某服務或者直接yum安裝等命令都會出現下面問題;而且會造成一個最嚴重的問題就是SSH連接不上了···
問題:
[root@localhost test]# yum install openssl There was a problem importing one of the Python modules required to run yum. The error leading to this problem was: libssl.so.10: cannot open shared object file: No such file or directory Please install a package which provides this module, or verify that the module is installed correctly. It's possible that the above module doesn't match the current version of Python, which is: 2.6.6 (r266:84292, Jun 18 2012, 14:18:47) [GCC 4.4.6 20110731 (Red Hat 4.4.6-3)] If you cannot solve this problem yourself, please go to the yum faq at: http://yum.baseurl.org/wiki/Faq
原因:丟失庫文件對應的軟鏈接導致
解決方法:
1、首先查看/usr/lib64/目錄下(如是32位系統那路徑就是/usr/lib/)libssl.so庫文件的版本,我的是libssl.so.1.0.0
[root@localhost /]# ll /usr/lib64/libssl.so* -rwxr-xr-x. 1 root root 479012 Apr 9 17:31 /usr/lib64/libssl.so.1.0.0
2、再查看/usr/lib64/目錄下
[root@localhost /]# ll /usr/lib64/libcrypto.so* -rwxr-xr-x. 1 root root 2200149 Apr 9 17:31 /usr/lib64/libcrypto.so.1.0.0
3、創建軟鏈接(ln源就是上面查出的對應版本的庫文件):
ln -s /usr/lib64/libssl.so.1.0.0 libssl.so.10 ln -s /usr/lib64/libcrypto.so.1.0.0 libcrypto.so.10
OK,至此問題已解決了,但是openssl版本依然是老版本,要想升級到1.0.1g,如是rhel系統,首先執行yum update openssl命令升級openssl版本,然后在安裝1.0.1g版本即可,等yum源里有最新的1.0.1g版本,可直接yum update到最新了~~~
也可直接安裝相應rpm包
虛機環境下,可掛載本地ISO鏡像來安裝。
以上就是libssl.so.10缺失庫文件的解決辦法是什么,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。