配置完Nginx后無法訪問新的Server虛擬機?
2024-08-30 12:23:33
供稿:網友
配置完 Nginx 兩個虛擬機后,客戶端能夠訪問原始的Server ,新增加的 Server 虛擬機 不能夠訪問,出現403的報錯,解決方法如下:
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: www.linuxidc.com, 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. 再次訪問,成功!