Error while loading shared libraries: /usr/local/lib64/libssl.so.1.1

后端 未结 8 1954
無奈伤痛
無奈伤痛 2021-01-05 00:34

I’m trying to compile openssl-1.1.0e on Centos 7 (7.3.1611) but after i successfully compiled everything without any warning, i get an error when i’m trying any openssl comm

8条回答
  •  清酒与你
    2021-01-05 01:03

    Try this:

    ldd libssl.so   ->  libcrypto.so.1.1 => not found
    sudo ln -s /usr/local/lib64/libcrypto.so.1.1 /usr/lib64/libcrypto.so.1.1
    libcrypto.so.1.1 => /lib64/libcrypto.so.1.1 (0x00007f17d46c7000)
    

提交回复
热议问题