Nginx服务器中403 forbidden 错误解决

问题描述: 配置完 Nginx 两个虚拟机后,客户端能够访问原始的Server ,新增加的 Server 虚拟机 不能够访问,报错如下页面

Nginx服务器中403 forbidden 错误解决

解决过程:

1. 查看报错日志
[root@linuxidc 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: "www.linuxidc.com"
[root@linuxidc logs]# date
Thu Jun 15 04:01:27 CST 2017

2. 检查权限
[root@linuxidc ~]# ll
drwxr-xr-x. 2 root root 4096 Jun 15 03:59 html
[root@linuxidc 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@linuxidc 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@linuxidc nginx]# ll
drwxr-xr-x. 2 root root 4096 Jun 15 04:08 conf
在nginx.conf文件的第一行加上 user root root;
[root@linuxidc nginx]# cat conf/nginx.conf
user root root;

5. 重新 reload nginx进程
[root@linuxidc nginx]# ./sbin/nginx -s reload

6. 再次访问,成功!

Nginx服务器中403 forbidden 错误解决

CentOS 7下Nginx服务器的安装配置 

CentOS上安装Nginx服务器实现虚拟主机和域名重定向 

CentOS 6.8 安装LNMP环境(Linux+Nginx+MySQL+PHP) 

Linux下安装PHP环境并配置Nginx支持php-fpm模块 

Nginx服务的SSL认证和htpasswd认证 

Linux中安装配置Nginx及参数详解 

Nginx日志过滤 使用ngx_log_if不记录特定日志

CentOS 7.2下Nginx+PHP+MySQL+Memcache缓存服务器安装配置 

CentOS6.9编译安装Nginx1.4.7 

Nginx 的详细介绍请点这里
Nginx 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/f9ca68465b208409390b18d809bb04fe.html