Openssl series problems caused by centos8 upgrade pagoda

The story happened like this, once upon a time there was a mountain

This problem is very strange. At first, I upgraded the pagoda panel from 7.9.3 to 7.9.4. After the upgrade, the pagoda popped up

libk5crypto.so.3: undefined symbol: EVP_KDF_ctrl, version OPENSSL_1_1_1b

If it is restarted later, I can’t even enter ssh. Login and enter root to directly tell login incorrect, and I don’t even give a chance to enter the password.

Ask Ali's after-sales brother for help. After the brother saved the snapshot, he commented out the following content and solved the ssh login problem.

 Eggy, my nginx, mysql, and php can't get up, and the error is:

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

Look at the configuration

vim /etc/ld.so.conf

found out

include ld.so.conf.d/*.conf
#/usr/local/lib

I looked at ls /usr/local/lib

There is no file like libssl.so at all, and this causes openssl problems

Just make up

include ld.so.conf.d/*.conf
/usr/local/lib
/usr/local/openssl/lib/

Then load the configuration

ldconfig -v

Ok, nginx, php, mysql are all up,

If not, use this Centos 8 /lib64/libk5crypto.so.3: undefined symbol: EVP_KDF_ctrl, version OPENSSL_1_1_1b #1127_hzcm1984's blog-CSDN Blog

The alarm bell is ringing: Pagoda follows the official plan of centos and no longer supports centos8, so don't upgrade and repair the panel easily under centos8

If you want to reinstall openssl, go here:

Upgrading openssl and uninstalling and reinstalling in CentOS and prompt: error while loading shared libraries: libssl.so.1.1: cannot open shared ob

Guess you like

Origin blog.csdn.net/xgocn/article/details/126921716