Execute ./configure: report configure: error: *** working libcrypto not found, check config.log report error resolution

Execute ./configure: report configure: error: *** working libcrypto not found, check config.log report error resolution

The reason is the openssl problem, you can install a new version to solve it

Download a new version and upload it to the server

# tar zxf openssl-***.tar.gz 
# cd openssl-***
# ./config --prefix=/usr/ --shared
# make
# make test
# make install
# ln -sf /usr/local/openssl/bin/openssl /usr/bin/openssl
# vi /etc/ld.so.conf    (添加以下内容)
  /usr/local/ssl/lib
# ldconfig -v

Execute ./configure again to see if it is successful. If you can't install it, you can try changing the installation path

Guess you like

Origin blog.csdn.net/qq_46023525/article/details/109768709