Answered by:
SCCM 2012 Linux Client Installation Error

Question
-
Hi guys,
I had an error when a try to install SCCM 2012 R2 Linux Client on various RedHat Servers.
This is the error on my Linux Servers:
Checking Prerequisites...
Running preinstall validator
/tmp/cmetc/bin_100/preinstallvalidator: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory
Pre-Install validator failed. Please check the version of OpenSSL with CM installation requirements.I've seen this is a known error, and probably it could be solved by creating symlinks on the RedHat systems.
I'm not a Linux expert. How do I create the symlink? What is the exact command?
Regards,
Rodrigo
Wednesday, February 5, 2014 3:15 PM
Answers
-
Hi.
You may have to create an symlinks,
Find your libssl location, then run the symlink command as below
$ ln -s Sourcepath TargetPath
example as below :-
$ ln -s /usr/lib64/libssl.so.1.0.1e /usr/lib64/libssl.so.1.0.0
$ ls /usr/lib64/ | grep libssl
#for verify.
just my one cents.
- Marked as answer by Rodrigo Andres Nuñez Hernandez Thursday, February 6, 2014 3:45 AM
Wednesday, February 5, 2014 5:35 PM -
Excellent Kamil !
I executed the following commands, and it worked fine:
- ln -s /usr/lib64/libssl.so.1.0.1e /usr/lib64/libssl.so.1.0.0
- ls /usr/lib64/ | grep libssl
- ln -s /usr/lib64/libcrypto.so.1.0.1e /usr/lib64/libcrypto.so.1.0.0
- ls /usr/lib64/ | grep libcrypto
- ./install -mp srv.domain.cl -sitecode NNN ccm-Universalx64.1.0.0.4580.tar
Thanks a lot.
Regards,
Rodrigo
- Marked as answer by Rodrigo Andres Nuñez Hernandez Thursday, February 6, 2014 3:45 AM
Thursday, February 6, 2014 3:45 AM
All replies
-
Hi.
You may have to create an symlinks,
Find your libssl location, then run the symlink command as below
$ ln -s Sourcepath TargetPath
example as below :-
$ ln -s /usr/lib64/libssl.so.1.0.1e /usr/lib64/libssl.so.1.0.0
$ ls /usr/lib64/ | grep libssl
#for verify.
just my one cents.
- Marked as answer by Rodrigo Andres Nuñez Hernandez Thursday, February 6, 2014 3:45 AM
Wednesday, February 5, 2014 5:35 PM -
Excellent Kamil !
I executed the following commands, and it worked fine:
- ln -s /usr/lib64/libssl.so.1.0.1e /usr/lib64/libssl.so.1.0.0
- ls /usr/lib64/ | grep libssl
- ln -s /usr/lib64/libcrypto.so.1.0.1e /usr/lib64/libcrypto.so.1.0.0
- ls /usr/lib64/ | grep libcrypto
- ./install -mp srv.domain.cl -sitecode NNN ccm-Universalx64.1.0.0.4580.tar
Thanks a lot.
Regards,
Rodrigo
- Marked as answer by Rodrigo Andres Nuñez Hernandez Thursday, February 6, 2014 3:45 AM
Thursday, February 6, 2014 3:45 AM