美文网首页
nginx: [emerg] open() "/nginx/lo

nginx: [emerg] open() "/nginx/lo

作者: 苏F马里奥 | 来源:发表于2018-07-10 09:22 被阅读0次

    重启服务器后,nginx服务起不来了,用命令 service nginx start,报如下错误:

    nginx: [error] open() "/alidata/server/nginx/logs/nginx.pid" failed (2: No such file or directory)

    解决办法:在logs目录下手动创建一个 nginx.pid文件

    再次启动nginx服务,又报下面错误:

    nginx: [emerg] open() "/usr/local/nginx/logs/access.log" failed (21: Is a directory)

    看了网上好多解决办法,都是用 -c来指向nginx的配置文件,但是不行,根据错误提示,看到access.log是一个文件夹,来到logs目录下,发现重启完服务器后,access.log确实变成了文件夹,把这文件夹删掉,重新创建一个access.log文件, 命令:touch access.log

    再次启动nginx服务,报端口被占用

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

    解决办法:使用命令关闭占用80端口的程序

    sudo fuser -k 80/tcp

    再次启动nginx服务,成功,解决了两个半小时。。。

    相关文章

      网友评论

          本文标题:nginx: [emerg] open() "/nginx/lo

          本文链接:https://www.haomeiwen.com/subject/yxtfpftx.html