centos启动Nginx提示nginx: [emerg] still could not bind()
Starting nginx: nginx: [emerg] bind() to 0.0.0.0:8080 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:8080 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:8080 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:8080 failed (98: Address already in use)
nginx: [emerg] bind() to 0.0.0.0:8080 failed (98: Address already in use)
nginx: [emerg] still could not bind()
这个的意思是说,nginx监听的 8080端口已经被使用了。解决方法有两种,一种是换端口,另一种是查看占用端口的进程,把它关掉。
--查询端口所在的进程号
[root@localhost www]# netstat -ntlp | grep 8080
tcp 0 0 0.0.0.0:8080 0.0.0.0:* LISTEN 29186/java
--杀掉进程
[root@localhost www]# kill -9 29186
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/62134.html