合 error while loading shared libraries: libcrypto.so.6: cannot open shared object file: No such file or directory
Tags: 故障处理OSlibcrypto.so.6
现象
1 2 3 4 | [root@lhrblog site]# bbcp -v -s 8 -F -f -w 10m -P 5 web_dbaup.com_20230328_081814.tar.gz root@192.168.88.14:/soft/ bbcp: error while loading shared libraries: libcrypto.so.6: cannot open shared object file: No such file or directory [root@lhrblog site]# find / -name libcrypto.so.6 [root@lhrblog site]# |
分析
寻找文件的安装包
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | -- 方法1,在yum源中寻找: [root@test1 /]# yum provides */libcrypto.so.6 Loaded plugins: fastestmirror, ovl Loading mirror speeds from cached hostfile epel/x86_64/filelists_db | 12 MB 00:01:08 extras/7/x86_64/filelists_db | 276 kB 00:00:01 updates/7/x86_64/filelists_db | 11 MB 00:01:05 openssl098e-0.9.8e-29.el7.centos.3.i686 : A compatibility version of a general cryptography and TLS library Repo : base Matched from: Filename : /usr/lib/libcrypto.so.6 openssl098e-0.9.8e-29.el7.centos.3.x86_64 : A compatibility version of a general cryptography and TLS library Repo : base Matched from: Filename : /usr/lib64/libcrypto.so.6 [root@test1 /]# -- 方法2,在当前系统上寻找: [root@lhrblog site]# find / -name libcrypto.so.6 /usr/lib64/libcrypto.so.6 [root@lhrblog site]# rpm -qf /usr/lib64/libcrypto.so.6 openssl098e-0.9.8e-29.el7.centos.3.x86_64 [root@lhrblog site]# |