I accidentally deleted /opt/alt/alt-nodejs12 folder and reinstalled it. But after reinstalling, when I run nodejs12 commands (e.g.: /opt/alt/alt-nodejs12/root/usr/bin/npm --version) it returns error:
I copied the libcrypto.so.1.1 and libssl.so.1.1 with their symlinks from /opt/alt/alt-nodejs11/root/usr/lib64 folder to nodejs12 corresponding directory, but after that it returns another error:
What command should I run to install OpenSSL requirements on this version of NodeJS ?
Code:
/opt/alt/alt-nodejs12/root/usr/bin/node: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
Code:
/opt/alt/alt-nodejs12/root/usr/bin/node: /opt/alt/alt-nodejs12/root/usr/lib64/libssl.so.1.1: version `OPENSSL_1_1_1 not found (required by /opt/alt/alt-nodejs12/root/usr/bin/node) /opt/alt/alt-nodejs12/root/usr/bin/node: /opt/alt/alt-nodejs12/root/usr/lib64/libcrypto.so.1.1: version `OPENSSL_1_1_1 not found (required by /opt/alt/alt-nodejs12/root/usr/bin/node)
Comment