apache2 层次结构问题

apache2 层次结构问题

我是 Ubuntu 新手,特别是终端新手。我设置了一个 VPS 来运行 Apache。
不幸的是,Apache 似乎已经安装好了,所以我使用命令apache2来运行它。
但是,安装搞砸了,配置文件不存在于其他文件中。我删除了该apache2软件包并重新安装,但发现存在同样的问题。
我的问题是,我如何才能完全重置 Apache 的文件层次结构?看来删除它并重新安装它不起作用。
更新
我已经使用了sudo apt-get purge apache2sudo apt-get install apache2该命令apache2返回以下内容:

[Sun Feb 08 00:44:30.834898 2015] [core:warn] [pid 11011] AH00111: Config variable ${APACHE_LOCK_DIR} is not defined  
[Sun Feb 08 00:44:30.834983 2015] [core:warn] [pid 11011] AH00111: Config variable ${APACHE_PID_FILE} is not defined  
[Sun Feb 08 00:44:30.834996 2015] [core:warn] [pid 11011] AH00111: Config variable ${APACHE_RUN_USER} is not defined  
[Sun Feb 08 00:44:30.835000 2015] [core:warn] [pid 11011] AH00111: Config variable ${APACHE_RUN_GROUP} is not defined  
[Sun Feb 08 00:44:30.835013 2015] [core:warn] [pid 11011] AH00111: Config variable ${APACHE_LOG_DIR} is not defined  
[Sun Feb 08 00:44:30.837863 2015] [core:warn] [pid 11011:tid 140685188798336] AH00111: Config variable ${APACHE_LOG_DIR} is not defined  
[Sun Feb 08 00:44:30.838044 2015] [core:warn] [pid 11011:tid 140685188798336] AH00111: Config variable ${APACHE_LOG_DIR} is not defined  
[Sun Feb 08 00:44:30.838052 2015] [core:warn] [pid 11011:tid 140685188798336] AH00111: Config variable ${APACHE_LOG_DIR} is not defined  
AH00526: Syntax error on line 74 of /etc/apache2/apache2.conf:  
Invalid Mutex directory in argument file:${APACHE_LOCK_DIR}

命令sudo service apache2 start返回以下内容:

* Starting web server apache2

答案1

我刚刚安装了 Apache2,这些是安装到我的计算机上的配置文件。

https://dl.dropboxusercontent.com/u/122705406/Google%20Drive/server%20default%20config/apach2e.zip

下载并解压,然后用该文件夹替换 /etc/apache2 目录。

另外,使用以下命令启动 apache 服务器

sudo service apache2 start

你可能想尝试一下

sudo apt-get purge apache2

代替apt-get remove

相关内容