51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

openssl报错error while loading shared libraries: libssl.so.1.1

完整报错内容如下
openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory

|---|-------------------------------------------------------------------------------------------------------------------------| | 1 | openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory |

这是由于加载库的时候找不到了,我这里将库的位置添加进来就好了

解决办法:
echo "/usr/local/lib64/" >> /etc/ld.so.conf ldconfig

|-----|--------------------------------------------------------| | 1 2 | echo "/usr/local/lib64/" >> /etc/ld.so.conf ldconfig |

赞(0)
未经允许不得转载:工具盒子 » openssl报错error while loading shared libraries: libssl.so.1.1