Httpd – upgrade centos apache to httpd-2.2.23

apache-2.2centos5httpd

A security vulnerability was found in Apache in April 2012 that is a PCI compliance issue:
http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2012-0883

I have always kept my servers (CentOS) up to date with yum. I've been unable to find a repo with httpd-2.2.23 (currently running 2.2.22). It's been a really long time since I've built anything from source so I'm not thrilled about doing it but will if needed.

My question is, how do I go about this and NOT break the yum update process?

TD

Best Answer

Backup your apache config files, uninstall httpd , httpd-devel and any other httpd package,then you can manually download rpm's from here.

And install it with yum or rpm.

yum localinstall pkg_name
rpm -ivh pkg_name

Hope this helps!

Related Topic