Created
November 16, 2017 00:37
-
-
Save lorne-luo/8c05a90d19aeaa653ac4dfd66f534307 to your computer and use it in GitHub Desktop.
upgrade openssl on centos 7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl version | |
cd /home/install | |
wget https://www.openssl.org/source/openssl-1.0.2m.tar.gz | |
tar -zxf openssl-1.0.2m.tar.gz | |
cd openssl-1.0.2m/ | |
./config | |
make | |
make test | |
make install | |
mv /usr/bin/openssl /usr/bin/openssl-old | |
ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl | |
openssl version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
got error after all process on openssl version
-bash: /usr/bin/openssl: No such file or directory