MRatWork Forum by Mustafa Ramadhan

Sawo Project - Kloxo-MR Discussions => Kloxo-MR Tips and Tricks => Topic started by: amudy17 on 2014-04-11, 15:00:49

Title: Update Openssl for fix bug Heartbleed
Post by: amudy17 on 2014-04-11, 15:00:49
## Any problem with manually compiling openssl as follows:

cd /usr/src

wget https://www.openssl.org/source/openssl-1.0.1g.tar.gz -O openssl-1.0.1g.tar.gz

tar -zxf openssl-1.0.1g.tar.gz

cd openssl-1.0.1g

./config

make

make test

make install

openssl version

## If it shows old version do the steps below.

mv /usr/bin/openssl /root/

ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl

openssl version

## OpenSSL 1.0.1g 7 Apr 2014
Title: Re: Update Openssl for fix bug Heartbleed
Post by: chrisf on 2014-04-11, 20:42:12
No need for manual compile, available through yum update.
Title: Re: Update Openssl for fix bug Heartbleed
Post by: marcnz on 2014-06-01, 02:55:41
The method from amudy17 worked for me following all the steps, including the "## If it shows old version do the steps below." steps.

I first tried the yum update openssl but it kept showing the latest available as the openssl-10.0.1e... version.

Yum did not work for me.

thanks
Title: Re: Update Openssl for fix bug Heartbleed
Post by: MRatWork on 2014-06-01, 04:22:26
Update openssl 1.0.1e-16 already fix this issue.