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
Awesome. It worked! Thanks a ton!
Thanks a mill.
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!
Thanks. It worked out for me.