CentOs 7:如果 http 监听特定的 IP 地址,则它不会在启动时启动

CentOs 7:如果 http 监听特定的 IP 地址,则它不会在启动时启动

我的 httpd.conf 中有这个:

Listen 216.XX.YY.ZZZZ:80

为了确保万无一失,我确保 httpd 在启动时已启用:

systemctl httpd enable

当系统靴子, 我有:

systemctl status httpd

● httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
   Active: failed (Result: exit-code) since Thu 2017-02-23 22:21:03 PST; 8min ago
  Process: 719 ExecStart=/usr/sbin/httpd $OPTIONS -DFOREGROUND (code=exited, status=1/FAILURE)
 Main PID: 719 (code=exited, status=1/FAILURE)

Feb 23 22:21:00 centosXXXXXX.aspadmin.net systemd[1]: Starting The Apache HTTP Server...
Feb 23 22:21:03 centosXXXXXX.aspadmin.net httpd[719]: (99)Cannot assign requested address: AH00072: make_sock: could not bind to address 216.XX.YY.XXX:80
Feb 23 22:21:03 centosXXXXXX.aspadmin.net httpd[719]: no listening sockets available, shutting down
Feb 23 22:21:03 centosXXXXXX.aspadmin.net httpd[719]: AH00015: Unable to open logs
Feb 23 22:21:03 centosXXXXXX.aspadmin.net systemd[1]: httpd.service: main process exited, code=exited, status=1/FAILURE
Feb 23 22:21:03 centosXXXXXX.aspadmin.net systemd[1]: Failed to start The Apache HTTP Server.
Feb 23 22:21:03 centosXXXXXX.aspadmin.net systemd[1]: Unit httpd.service entered failed state.
Feb 23 22:21:03 centosXXXXXX.aspadmin.net systemd[1]: httpd.service failed.

然后我可以通过运行以下命令来启动它:

systemctl start httpd

一切正常:

systemctl status httpd


● httpd.service - The Apache HTTP Server
   Loaded: loaded (/usr/lib/systemd/system/httpd.service; enabled; vendor preset: disabled)
   Active: active (running) since Thu 2017-02-23 22:31:53 PST; 3s ago
 Main PID: 2804 (httpd)
   Status: "Processing requests..."
   CGroup: /system.slice/httpd.service
       ├─2804 /usr/sbin/httpd -DFOREGROUND
       ├─2805 /usr/sbin/httpd -DFOREGROUND
       ├─2806 /usr/sbin/httpd -DFOREGROUND
       ├─2808 /usr/sbin/httpd -DFOREGROUND
       ├─2824 /usr/sbin/httpd -DFOREGROUND
       └─2831 /usr/sbin/httpd -DFOREGROUND

Feb 23 22:31:53 centosXXXXXX.aspadmin.net systemd[1]: Starting The Apache HTTP Server...
Feb 23 22:31:53 centosXXXXXX.aspadmin.net httpd[2804]: AH00558: httpd:     Feb 23 22:31:53 centosXXXXXX.aspadmin.net systemd[1]: Started The Apache HTTP Server.
Hint: Some lines were ellipsized, use -l to show in full.

使用 中的常规网络脚本将 IP 分配给 eth0 /etc/sysconfig/network-scripts/ifcfg-eth0

检查/lib/systemd/system/httpd.service我有:

[Unit]
Description=The Apache HTTP Server
After=network.target remote-fs.target nss-lookup.target

网络上唯一类似的问题是这里:https://unix.stackexchange.com/questions/207063/apache-httpd-failing-to-start-on-boot-centos-7然而,他们的建议是:

systemctl enable NetworkManager-wait-online.service
Failed to execute operation: No such file or directory

似乎不起作用。

我彻底迷失了。

答案1

事实证明,你需要使用 NetworkManager 来实现这一点,因为你需要等待 IP实际上可用。CentOs 7 中默认未安装 NetworkManager。

所以:

# yum install NetworkManager

启用它:

systemctl enable NetworkManager-wait-online

然后:

# systemctl edit httpd.service

并添加:

After=network.target NetworkManager-wait-online.service remote-fs.target nss-lookup.target

此时,HTTPD 只会在 IP 分配给接口后启动,然后实际上开始。

相关内容