Nagios command: error while loading shared libraries: libssl.so.6
unknown error: Runtime.executionContextCreated has invalid 'context
The nagios commands check_tcp and check_http may get this errors because they use a 32bit ssl libs.
To resolve this problem, we need to set symlinks.
#cd /usr/lib64
#ln -s libcrypto.so.1.0.1e libcrypto.so.6
#ln -s libssl.so.1.0.1e libssl.so.6
That's all....