如何重新创建 apache 配置目录?

如何重新创建 apache 配置目录?

我正在设置一个 Apache 实例。不小心就设置了rm -rf /etc/apache2。现在我没有任何配置。

哦。

sudo apt-get install apache2 --reinstall,但是没用:(

我怎样才能重新创建目录?

我正在使用 Ubuntu 10.04 LTS 服务器。

答案1

我得到了答案。

sudo apt-get remove --purge apache2 apache2-utils
sudo apt-get install --reinstall  apache2 apache2-utils

答案2

我需要:

sudo apt-get remove --purge apache2 apache2-utils apache2.2-common 

然后还必须重新安装 php5:

sudo apt-get install --reinstall apache2-utils apache2 libapache2-mod-php5

只需要考虑我已经安装的其他东西。

(Ubuntu 12.10)

相关内容