lsof: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
时间: 2023-12-26 19:28:10 浏览: 127
libcrypto.so.1.1
根据提供的引用内容,出现错误"lsof: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory"是因为缺少libcrypto.so.1.1共享库文件。解决方法如下:
1. 安装libcrypto.so.1.1共享库文件:
```shell
yum install libcrypto.so.1.1
```
2. 创建软链接:
```shell
ln -sf /usr/lib64/libcrypto.so.1.1 /usr/lib64/libcrypto.so.1.0
```
3. 更新系统路径:
将lsof命令所在的路径添加到系统路径中,以便随处执行lsof命令。
请注意,具体的解决方法可能因操作系统版本和软件版本而有所不同。请根据实际情况进行调整。
阅读全文