标签:.com col color 分享 ado term bin nta failed
[root@web02 sbin]# /application/nginx-1.6.3/sbin/nginx -tnginx: the configuration file /application/nginx-1.6.3/conf/nginx.conf syntax is ok
2018/08/16 19:37:10 [emerg] 60246#0: open() "/application/nginx-1.6.3/logs/nginx.pid" failed (2: No such file or directory)
nginx: configuration file /application/nginx-1.6.3/conf/nginx.conf test failed
**从上面的报错可以看到 有三个
我解决的思路
最后一个可以看到 test 测试失败 说明找不到配置文件
于是 我指定了一下**
使用nginx -c的参数指定nginx.conf文件的位置
[root@web02 sbin]# /application/nginx-1.6.3/sbin/nginx -c /application/nginx-1.6.3/conf/nginx.conf
nginx: [alert] could not open error log file: open() "/application/nginx-1.6.3/logs/error.log" failed (2: No such file or directory)
2018/08/16 19:43:00 [emerg] 60256#0: open() "/application/nginx-1.6.3/logs/access.log" failed (2: No such file or directory)
报错再次更新 于是 按照报错的意思 说是找不到目录或者文件
发现 真的少一个目录 Logs
于是我就创建了一个新的目录 Logs
然后 在里面创建了错误日志 和正常的日志文件
我的用户是www
于是 对整个nginx形成了 chown -R 属性更改
再次重启 正常
标签:.com col color 分享 ado term bin nta failed
原文地址:http://blog.51cto.com/13754503/2160908