编辑
2025-07-17
部署项目遇到的问题
00
请注意,本文编写于 49 天前,最后修改于 49 天前,其中某些信息可能已经过时。
  1. 查看报错日志 [root@mysql03 nginx]# cat logs/error.log 2017/06/15 04:00:57 [error] 6702#0: *14 "/root/html/index.html" is forbidden (13: Permission denied), client: 10.219.24.1, server: request: "GET / HTTP/1.1", host: "" [root@mysql03 logs]# date Thu Jun 15 04:01:27 CST 2017
  2. 检查权限 [root@mysql03 ~]# ll drwxr-xr-x. 2 root root 4096 Jun 15 03:59 html [root@mysql03 html]# ll total 8 -rw-r--r--. 1 root root 537 Jun 15 03:59 50x.html -rw-r--r--. 1 root root 616 Jun 15 03:51 index.html 说明:发现目录权限没有问题
  3. 检查nginx启动进程 [root@mysql03 logs]# ps anx|grep nginx 6546 ? Ss 0:00 nginx: master process ./sbin/nginx 6702 ? S 0:00 nginx: worker process 6726 pts/1 S+ 0:00 grep nginx 说明:发现nginx的work process是nobody的
  4. 修改 nginx.conf 文件 打开nginx.conf文件所在的目录,查看文件的属性 (root root) [root@mysql03 nginx]# ll drwxr-xr-x. 2 root root 4096 Jun 15 04:08 conf 在nginx.conf文件的第一行加上 user root root; [root@mysql03 nginx]# cat conf/nginx.conf user root root;
  5. 重新 reload nginx进程 [root@mysql03 nginx]# ./sbin/nginx -s reload
  6. 再次访问,成功!

本文作者:lsq_137

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!