1 2 3 4 5 |
[root@www ~]# yum -y install httpd [root@www ~]# service httpd start Redirecting to /bin/systemctl start httpd.service Job for httpd.service failed because the control process exited with error code. See "systemctl status httpd.service" and "journalctl -xe" for details. |
查看日志:
1 2 3 4 5 |
[root@www ~]# cat /var/log/messages | grep httpd …… Mar 13 11:53:43 www httpd: (98)Address already in use: AH00072: make_sock: could not bind to address 0.0.0.0:80 …… |
可以看出是端口被占用了
将httpd.conf中的Listen 80
行改为 Listen 127.0.0.1:80
1 2 3 4 |
[root@www ~]# vim /etc/httpd/conf/httpd.conf [root@www ~]# service httpd start Redirecting to /bin/systemctl start httpd.service |