如何将 Apache 2.4.7 更新到 Apache 2.4.11

如何将 Apache 2.4.7 更新到 Apache 2.4.11

我是 Ubuntu 新手。目前,我的服务器 (DigitalOcean) 使用 Ubuntu 14.04.1LTS 和 Apache 2.4.7。

如何将 Apache 更新到最新版本?

我尝试apt-get更新系统,但 Apache 版本仍然相同:

sudo apt-get update
sudo apt-get dist-upgrade

我想将 Apache 2.4.7 更新到 2.4.11 http://httpd.apache.org/security/vulnerabilities_24.html

答案1

Apache 2.4.11 尚未作为完整软件包发布,截至目前它仍处于开发树中。这意味着您应该自己查看并编译源代码。作为一种权衡解决方案,您可以升级几个版本,并通过将这些 PPA 添加到您的存储库列表中来获得与 Debian Apache2 团队发布的一样多的更新 Apache2 软件包:

https://launchpad.net/~ondrej/+archive/ubuntu/apache2

https://launchpad.net/~ondrej/+archive/ubuntu/php5

(第二个链接针对 php 5.5 支持)

您可以按照这些网页的说明进行操作,或者通过发出以下命令来采取最简单的方法:

sudo add-apt-repository ppa:ondrej/apache2
sudo add-apt-repository ppa:ondrej/php5

如果您的 VPS 中没有 add-apt-repository,请安装它。

sudo apt-get install software-properties-common

或者,在旧版 Ubuntu 上:

sudo apt-get install python-software-properties

相关内容