码迷,mamicode.com
首页 > Web开发 > 详细

apache启动报错(98)Address already in use: make_sock: could not bind to address [::]:80

时间:2015-03-10 01:33:27      阅读:212      评论:0      收藏:0      [点我收藏+]

标签:address   local   already   linux   start   

# /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:80
no listening sockets available, shutting down
Unable 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 http
Warning: bad syntax, perhaps a bogus ‘-‘? See /usr/share/doc/procps-3.2.7/FAQ
root     12079 0.0 0.0 61164   720 pts/1    S+   16:06   0:00 grep http
# ps -aux | grep apache
Warning: bad syntax, perhaps a bogus ‘-‘? See /usr/share/doc/procps-3.2.7/FAQ
apache   10820 0.0 0.0   2044   600 ?        Ss   Jan01   0:04 bash
root     12081 0.0 0.0 61160   716 pts/1    S+   16:06   0:00 grep apache
# kill -9 10820
# /etc/init.d/httpd start
Starting httpd:                                            [ OK ]
# /etc/init.d/httpd restart
Stopping httpd:                                            [ OK ]
Starting httpd:                                            [ OK ]
**********************************************************

 

主要原因是因为httpd已经有运行中的进程,只要kill这些进程,再重新启动就可以了


本文出自 “zzfeng” 博客,请务必保留此出处http://zzfeng.blog.51cto.com/8155140/1618846

apache启动报错(98)Address already in use: make_sock: could not bind to address [::]:80

标签:address   local   already   linux   start   

原文地址:http://zzfeng.blog.51cto.com/8155140/1618846

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!