ERROR:
error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory
or
error while loading shared libraries: libssl.so.6: wrong ELF class: ELFCLASS32
nagios check_tcp and check_http may get this errors because they use a 32bit ssl libs.
just create the symlink to it
SOLUTION:
cd /usr/lib64
ln -s libcrypto.so.1.0.1e libcrypto.so.6
ln -s libssl.so.1.0.1e libssl.so.6

4 thoughts on “error while loading shared libraries: libssl.so.6

  1. I ran into this issue on a centreon 2.8 install where I imported the check_http script. This fix is still working fine, thanks a lot!

Leave a Reply

Your email address will not be published. Required fields are marked *