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

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

时间:2017-02-11 15:35:01      阅读:4361      评论:0      收藏:0      [点我收藏+]

标签:eterm   min   报错   linu   fail   local   could   highlight   ldo   

1. 启动 Apache 时报错:

[root@localhost sh]# service httpd start
Starting httpd: httpd: Could not reliably determine the server‘s fully qualified domain name, using localhost.localdomain for ServerName
(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]

2. 查询到 80 端口被 nginx 占用:

[root@localhost sh]# netstat -tulnp | grep ":80"
tcp        0      0 0.0.0.0:80                  0.0.0.0:*                   LISTEN      1327/nginx

3. 找到 nginx 的进程号:

[root@localhost sh]# ps -ef | grep nginx
root      1327     1  0 11:35 ?        00:00:00 nginx: master process /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
www       1329  1327  0 11:35 ?        00:00:00 nginx: worker process                                          
root      3902  1789  0 14:41 pts/0    00:00:00 grep --color=auto nginx

4. 杀掉进程:

[root@localhost sh]# kill -9 1327
[root@localhost sh]# kill -9 1329

5. 重新开启 Apache:

[root@localhost sh]# service httpd start
Starting httpd: httpd: Could not reliably determine the server‘s fully qualified domain name, using localhost.localdomain for ServerName
                                                           [  OK  ]

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

标签:eterm   min   报错   linu   fail   local   could   highlight   ldo   

原文地址:http://www.cnblogs.com/wnzhong/p/6389152.html

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