首页 > 其他 > 详细

nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) 错误解决

时间:2016-03-16 01:43:16      阅读:544      评论:0      收藏:0      [点我收藏+]

[emerg]: bind() to 0.0.0.0:80 failed (98: Address already in use)   这个是nginx重启是 经常遇到的。   网上找了很多信息 都是没有啥用。说的乱七八糟的。   发现原来是nginx重复重启。自己占用了端口。 解决

方法  killall -9 nginx 杀掉nginx 进程  然后重启就行了。  service nginx restart 

这样就解决了。


-----------------------------------------------------------------------------------------------------------------------------------------------------

今天在做LNMP的时候,启动nginx服务,无法开启,导致网页打不开。把服务从起一下发现提示错误如下:

Starting nginx: nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)

nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
nginx: [emerg] still could not bind()

问题描述:地址已被使用。可能nginx服务卡死了,导致端口占用,出现此错误。

解决方法:首先用lsof:80看下80端口被什么程序占用。lsof返回结果如下:

COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME
nginx 3274 root 6u IPv4 10664 0t0 TCP *:http (LISTEN)
nginx 3547 nginx 6u IPv4 10664 0t0 TCP *:http (LISTEN)

发现是nginx程序,所以我们把nginx服务k掉,重新启动服务。。命令如下:

kill -9 3274

kill -9 3547

service nginx start

Starting nginx:                                            [  OK  ]

OK了,服务成功启动!~~


nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use) 错误解决

原文:http://linuxzqdn.blog.51cto.com/6158930/1751349

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!