Apache2 错误 apache2.service 的作业失败,因为控制进程退出并显示错误代码

Apache2 错误 apache2.service 的作业失败,因为控制进程退出并显示错误代码

我正在尝试使用 linode 和 ubuntu 运行 apache2 web 服务器。我收到以下错误

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

跑步后

sudo service apache2 start

我运行了他们提供的命令并得到:

systemctl status apache2.service

× apache2.service - The Apache HTTP Server
     Loaded: loaded (/lib/systemd/system/apache2.service; enabled; preset: enabled)
     Active: failed (Result: exit-code) since Fri 2023-04-28 12:59:56 UTC; 2min 13s ago
   Duration: 27min 6.692s
       Docs: https://httpd.apache.org/docs/2.4/
    Process: 6388 ExecStart=/usr/sbin/apachectl start (code=exited, status=1/FAILURE)
        CPU: 11ms

journalctl -xeu apache2.service
Hint: You are currently not seeing messages from other users and the system.
      Users in groups 'adm', 'systemd-journal' can see all messages.
      Pass -q to turn off this notice.
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
-- No entries --

有人知道如何解决这个问题吗?如果你需要任何其他信息,请询问,我只是不想让问题太过复杂

答案1

首先,阅读错误消息。是否id显示您属于 或 组之一admsystemd-journal请联系您的系统管理员或sudo adduser $USER systemd-journal,然后注销/登录,因为组是由 设置的login

或者您也可以使用sudo

sudo journalctl -xeu apache2.service

第二,你的apache2已经够了Duration: 27min 6.692s。你忘了stop旧的apache2吗?

第三,是否有其他进程正在监听 TCP 端口 80?sudo lsof itcp:80。 清除它。 端口监听不能共享。

man journalctl lsof sudo service

相关内容