2

我已经安装了 apache2,但是当我安装时它不会启动

sudo service apache2 start

它给了我这个问题

Job for apache2.service failed because the control process exited with    error code. See "systemctl status apache2.service" and "journalctl -xe" for details.

所以当我输入这个命令时

 systemctl status apache2.service

它给了我这个信息

● apache2.service - LSB: Apache2 web server
Loaded: loaded (/etc/init.d/apache2)
Active: failed (Result: exit-code) since ن 2016-04-11 15:41:07 WEST; min  43s ago
 Docs: man:systemd-sysv-generator(8)
Process: 19644 ExecStart=/etc/init.d/apache2 start (code=exited, status=2)

11 15:41:07 oussama-UL50VT systemd[1]: Starting LSB: Apache2 web server...
11 15:41:07 oussama-UL50VT apache2[19644]: /etc/init.d/apache2: 64: .: Can't open /etc/apache2/envvars
11 15:41:07 oussama-UL50VT apache2[19644]: /etc/init.d/apache2: 76: .: Can't open /etc/apache2/envvars
11 15:41:07 oussama-UL50VT systemd[1]: apache2.service: Control process exited, code=exited status=2
11 15:41:07 oussama-UL50VT systemd[1]: Failed to start LSB: Apache2 web server.
11 15:41:07 oussama-UL50VT systemd[1]: apache2.service: Unit entered failed state.
11 15:41:07 oussama-UL50VT systemd[1]: apache2.service: Failed with result 'exit-code'.
11 15:41:07 oussama-UL50VT apache2[19644]: ERROR: APACHE_PID_FILE needs to be defined in /etc/apache2/envvars
4

2 回答 2

4

看起来您的 apache 安装已损坏...请尝试通过在终端中运行以下命令来重新安装 apache:

sudo apt-get purge apache2
sudo apt-get install apache2
于 2016-04-11T14:58:27.317 回答
2

运行这个命令。

  • apachectl 启动

输出应准确显示 mods 加载文件夹中缺少的内容。再次安装指示的缺失 mod 运行命令安装缺失的 mod 直到 apache 启动。

这在 linux mint 18 上对我有用

于 2016-10-01T15:45:43.677 回答