Skip to content

Instantly share code, notes, and snippets.

@lorne-luo
Created November 16, 2017 00:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save lorne-luo/8c05a90d19aeaa653ac4dfd66f534307 to your computer and use it in GitHub Desktop.
Save lorne-luo/8c05a90d19aeaa653ac4dfd66f534307 to your computer and use it in GitHub Desktop.
upgrade openssl on centos 7
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
@fullflash
Copy link

got error after all process on openssl version

-bash: /usr/bin/openssl: No such file or directory

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment