首頁 > 軟體

Nginx 403 forbidden錯誤的原因以及解決方法

2022-08-17 14:03:43

一、由於啟動使用者和nginx工作使用者不一致所致

1.1檢視nginx的啟動使用者,發現是nginx,而為是用root啟動的

[root@iZwz96xkbmh1v1n08cvb5dZ /]# ps aux|grep nginx
root        2773  0.0  0.0   9068   844 ?        Ss   13:56   0:00 nginx: master process /usr/sbin/nginx
nginx       2774  0.0  0.1   9476  2360 ?        S    13:56   0:00 nginx: worker process
root        2916  0.0  0.0 221460   836 pts/0    R+   13:59   0:00 grep --color=auto nginx

1.2將nginx.config的user改為和啟動使用者一致,

命令:vim etc/nginx.conf

# For more information on configuration, see:
#   * Official English Documentation: http://nginx.org/en/docs/
#   * Official Russian Documentation: http://nginx.org/ru/docs/

user root; //就是這裡
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;

1.3 也可以使用如下命令直接檢視

ps aux|grep nginx

[root@iZwz96xkbmh1v1n08cvb5dZ nginx]# ps aux|grep nginx
root        2983  0.0  0.0   9068   848 ?        Ss   14:02   0:00 nginx: master process /usr/sbin/nginx
root        2984  0.0  0.1   9476  2356 ?        S    14:02   0:00 nginx: worker process
root        2986  0.0  0.0 221460   848 pts/0    R+   14:02   0:00 grep --color=auto nginx

二、缺少index.html,就是組態檔中index index.html index.htm這行中的指定的檔案。

 server {
        listen       80;
        listen       [::]:80;
        server_name  _;
        root         /usr/share/nginx/html;
    
        # Load configuration files for the default server block.
        include /etc/nginx/default.d/*.conf;

        location / {
        root /root/xiaoaodi/index/dist;
        index index.html;
        }

如果在/data/www/下面沒有index.html的時候,直接檔案,會報403 forbidden。

三、許可權問題,如果nginx沒有web目錄的操作許可權,也會出現403錯誤。

解決辦法:修改web目錄的讀寫許可權,或者是把nginx的啟動使用者改成目錄的所屬使用者,重啟Nginx即可解決

chmod -R 777 /data

chmod -R 777 /data/www/

[root@iZwz96xkbmh1v1n08cvb5dZ data]# chmod 777 www
[root@iZwz96xkbmh1v1n08cvb5dZ data]# ls -l
total 4
drwxrwxrwx 3 root root 4096 Apr 10 14:26 www

總結

到此這篇關於Nginx 403 forbidden錯誤的原因以及解決方法的文章就介紹到這了,更多相關Nginx 403 forbidden錯誤解決內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com