# /usr/local/apache2/bin/apachectl start
Starting httpd: (98)Address already in use: make_sock: could not bind to address [::]:80
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:80no listening sockets available, shutting downUnable to open logs [FAILED]1.netstat -lnp|grep 80
tcp 0 0 192.168.180.68:61027 0.0.0.0:* LISTEN 6289/oproxyd
tcp 0 0 :::80 :::* LISTEN 846/httpd tcp 0 0 ::ffff:192.168.180.68:7001 :::* LISTEN 32015/java找到pid 846
#ps 846
查看
#kill -9 846杀掉
#./apachectl start
启动成功
*****************************************************************************处理办法:# ps -aux | grep httpWarning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQroot 12079 0.0 0.0 61164 720 pts/1 S+ 16:06 0:00 grep http# ps -aux | grep apacheWarning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQapache 10820 0.0 0.0 2044 600 ? Ss Jan01 0:04 bashroot 12081 0.0 0.0 61160 716 pts/1 S+ 16:06 0:00 grep apache# kill -9 10820# /etc/init.d/httpd startStarting httpd: [ OK ]# /etc/init.d/httpd restartStopping httpd: [ OK ]Starting httpd: [ OK ]**********************************************************
主要原因是因为httpd已经有运行中的进程,只要kill这些进程,再重新启动就可以了