昨天,服务器进行清理,关闭了服务器,今天,输入域名想要访问服务器发现网页打不开了,首先想到的是nginx的问题,然后就登录服务器重启了nginx,结果出现了这个错误:nginx: [error] open() "/var/run/nginx/nginx.pid" failed (2: No such file or directory)
问题分析:
提示信息提示在/var/run/nginx/目录下找不到nginx.pid文件
解决方法:
方法一、修改nginx.conf配置文件
1.cd /usr/local/nginx/conf 进入conf目录,编辑配置文件nginx.conf
2.配置文件中有个注释的地方: #pid logs/nginx.pid;
将注释解开,并修改为pid /usr/local/nginx/logs/nginx.pid;
此时,如果我们启动nginx可能会存在这个问题:nginx: [alert] could not open