Created
April 8, 2014 13:29
-
-
Save salcode/10124288 to your computer and use it in GitHub Desktop.
Patch Heartbleed on Cent OS
This file contains hidden or 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
# SSH into the server as root | |
# confirm Linux version CentOS 6.5 | |
cat /etc/*-release | |
# clear metadata (ensure we get the latest release) | |
yum clean metadata | |
# update openssl | |
yum update openssl | |
# check openssl version shows up on this list of patched | |
# http://lists.centos.org/pipermail/centos-announce/2014-April/020249.html | |
# lookup result on this page to confirm you are now on an updated version | |
rpm -qa | grep openssl |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment