nginx启动报错!~~帮忙看看
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx启动报错!~~帮忙看看相关的知识,希望对你有一定的参考价值。
nginx启动报错!~~帮忙看看 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).....
找到原因了,配置文件里面的域名写重复了 导致80端口冲突 参考技术A重新启动服务器发现报nginx: [error] open() "/usr/local/nginx/logs/nginx.pid" failed (2: No such file or directory)错误。
解决方法:
[root@localhost nginx]# /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf
使用nginx -c的参数指定nginx.conf文件的位置
[root@localhost nginx]# cd logs/
[root@localhost logs]# ll
总用量 12
-rw-r--r-- 1 root root 1246 12月 9 18:10 access.log
-rw-r--r-- 1 root root 516 12月 10 15:39 error.log
-rw-r--r-- 1 root root 5 12月 10 15:38 nginx.pid
参考技术B 端口被占用,可以杀掉80进程以上是关于nginx启动报错!~~帮忙看看的主要内容,如果未能解决你的问题,请参考以下文章
项目启动报错怎么办?看看你Spring自动注入用对了嘛?@Autowired XxxService注入问题解决