Skip to content

Instantly share code, notes, and snippets.

@ChrisMcKee
Last active August 29, 2015 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ChrisMcKee/10073152 to your computer and use it in GitHub Desktop.
Save ChrisMcKee/10073152 to your computer and use it in GitHub Desktop.
Install openssl from source for Heatbleed patch
echo "Installing OpenSSL"
yum -y -q install gcc gcc-c++ make pcre-devel zlib-devel unzip wget > /dev/null
mkdir -p /src
cd /src
# download openssl centos 6.x
wget -cnv --progress=bar http://www.openssl.org/source/openssl-1.0.1g.tar.gz
tar xvzf openssl-1.0.1g.tar.gz
cd openssl-1.0.1g
./config shared enable-tlsext --prefix=/usr/local --openssldir=/usr/local/ssl
make clean
make
make install
@ChrisMcKee
Copy link
Author

Ubuntu 12 LTS now has the openssl update (7-april-2014 1:51am)

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