启动apache的时候出现如下错误:
(9Address already in use: make_sock: could not bind to address [::]:80
(9Address already in use: make_sock: could not bind to address 0.0.0.0:80
no listening sockets available, shutting down
Unable to open logs
解决方法:
netstat -natup |grep 80 查看端口
ps -A|grep httpd 查看程序
...