CentOS8 (2 核 4G)启动Nginx提示nginx: [emerg] still could not bind()
问题描述:
CentOS8 (2 核 4G)环境下启动Nginx:nginx -c /etc/nginx/nginx.conf
,提示以下错误
解决办法:
- 先使用
netstat -ntlp|grep 80
,查看端口占用情况。 - 再使用
killall -9 nginx
杀死所有监听在80端口的nginx服务。 - 再执行
nginx -c /etc/nginx/nginx.conf
就成功了。