Running Step 6. I was seeing:
error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
Basically you are trying to run mongo flat from the file system but the dependencies (like openssl) arent install on the SYSTEM, theyre only installed in SPLUNK.
Either the lib file needs to be installed under default path /usr/lib or the LIB path needs to be set as below
export LD_LIBRARY_PATH=/opt/splunk/lib/:$LD_LIBRARY_PATH
... View more