Apache systemctl启动httpd失败

Apache systemctl启动httpd失败

我有一个带有 apache2 Web 服务器的 Suse 系统。当我尝试启动 apache 时出现错误,当我询问 apache2 的状态时,我得到 httpd 未运行的信息。所以现在我尝试启动httpd

systemctl start httpd

但这不起作用,所以我问

systemctl status httpd

结果是:

httpd.service
Loaded: not-found (Reason: No such file or directory)
Active: inactive (dead)

我怎样才能启动httpd corecly ?

答案1

JdeBP 已经朝这个方向发表了评论,所以我想我应该将其充实到答案中。

Apache 的 SUSE 自述文件部分说:

尊敬的系统管理员,

SUSE Apache 软件包可以在一个系统上运行多个 Apache 进程实例。

一如既往,

systemctl start apache2

激活服务器的默认实例,该实例需要 /etc/sysconfig/apache2 中的 sysconfig 设置。如果此文件不存在,或者其中未设置 APACHE_HTTPD_CONF,则需要 /etc/apache2/httpd.conf。

...这似乎指出了错误;您尝试启动名为“httpd”的单元,而该单元实际上名为“apache2”。这也与你看到的证据相符,证据表明:

Reason: No such file or directory

...因为没有 httpd.service 文件。

相关内容