Centos6 卸載OpenSSL後重裝提示 libssl.so.10: cannot open shared object file: No such file or directory

一.強制卸載OpenSSL:
rpm -e --nodeps openssl
二.卸載後重裝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, Aug 18 2016, 15:13:37)
[GCC 4.4.7 20120313 (Red Hat 4.4.7-17)]

If you cannot solve this problem yourself, please go to
the yum faq at:
http://yum.baseurl.org/wiki/Faq

三.解決方案
1.下載:https://www.openssl.org/source/old/1.0.1/openssl-1.0.1e.tar.gz 上傳到服務器,
2.解壓:[root@CentOS6 lib64]#tar xvf openssl-1.0.1e.tar.gz
3.進入目錄: cd openssl-1.0.1e
4.執行: ./config shared zlib-dynamic 生成Makefile文件
5.Make:通過make來生成生成libssl.so.1.0.0 和 libcrypto.so.1.0.0
6.拷貝:將這2個文件拷貝到/usr/lib64/
7.進入目錄:cd /usr/lib64
8.創建軟鏈接:
ln -s libssl.so.1.0.0 libssl.so.10
ln -s libcrypto.so.1.0.0 libcrypto.so.10
9.已解決
在這裏插入圖片描述
參考自:
https://blog.csdn.net/yifeng20xx/article/details/74896426
https://blog.51cto.com/11895569/2352747?source=dra

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章