Apache2服务不会在Ubuntu 15.10中启动

时间:2016-04-11 14:52:38

标签: ubuntu apache2 ubuntu-15.10

我已经安装了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

2 个答案:

答案 0 :(得分:4)

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

sudo apt-get purge apache2
sudo apt-get install apache2

答案 1 :(得分:2)

运行此命令。

  • apachectl start

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

这适用于linux mint 18

相关问题