Skip to content

Instantly share code, notes, and snippets.

@msoranno
Last active November 17, 2018 11:02
Show Gist options
  • Save msoranno/fde4d1ad60e5a985647e88e5bf1585da to your computer and use it in GitHub Desktop.
Save msoranno/fde4d1ad60e5a985647e88e5bf1585da to your computer and use it in GitHub Desktop.
update openssl redhat
cd /usr/local/src
wget https://www.openssl.org/source/openssl-1.1.1.tar.gz
tar -zxf openssl-1.1.1.tar.gz
cd openssl-1.1.1/
./config
make
make test
make install
mv /usr/bin/openssl /root/
ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl
echo "/usr/local/lib64" > /etc/ld.so.conf.d/openssl.conf
ldconfig
openssl version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment