CentOS 7中Nginx下Wordpress沒有寫權限

CentOS 7中Nginx下Wordpress沒有寫權限

我有一台運行 Nginx 的 CentOS 7 機器,用戶是「nginx」(CentOS 中的預設用戶)。我已經安裝了 Wordpress,它工作得很好,我已經為 WordPress 資料夾和子資料夾(775)中的 nginx 用戶授予了寫入權限,但仍然出現權限錯誤:

無法建立目錄 wp-content/uploads/2015/05

我仔細檢查了哪個使用者正在執行 nginx 工作進程,它是 nginx。

這一定是我錯過了一些微不足道的事情。有人能幫我嗎?

編輯:

我在 /var/log/nginx/error.log 中註意到這一點:

2015/05/03 20:42:41 [錯誤] 23652#0: *1 FastCGI 在stderr 中傳送:「無法開啟主腳本:/usr/share/nginx/html/index.php(沒有這樣的檔案或目錄) " 從上游讀取回應頭時,客戶端:XXX.XXX.XXX.A,伺服器:XXX.XXX.XXX.B,要求:“GET / HTTP/1.1”,上游:“fastcgi://unix: /var/運行/php-fpm/php-fpm.sock:”,主機:“XXX.XXX.XXX.B”

2015/05/03 20:44:18 [錯誤] 23652#0: *3 FastCGI 在 stderr 中傳送:「無法開啟主腳本:/usr/share/nginx/html/wp-admin/admin-ajax.php (沒有這樣的檔案或目錄)」從上游讀取回應頭時,客戶端:XXX.XXX.XXX.A,伺服器:XXX.XXX.XXX.B,要求:「POST /wp-admin/admin-ajax. php HTTP/ 1.1”,上遊:“fastcgi://unix:/var/run/php-fpm/php-fpm.sock:”,主機:“XXX.XXX.XXX.B”,引薦來源:“http://XXX.XXX.XXX.B/wp-admin/

2015/05/03 21:02:54 [emerg] 23803#0: getpwnam("http") 在 /etc/nginx/nginx.conf:6 中失敗

編輯2

$ ps -elf|grep nginx
1 S root      2045     1  0  80   0 - 27393 sigsus 15:46 ?        00:00:00 nginx: master process /usr/sbin/nginx
5 S nginx     2049  2045  0  80   0 - 27503 ep_pol 15:46 ?        00:00:00 nginx: worker process
5 S nginx     2050  2045  0  80   0 - 27503 ep_pol 15:46 ?        00:00:00 nginx: worker process
5 S nginx     2051  2045  0  80   0 - 27503 ep_pol 15:46 ?        00:00:00 nginx: worker process
5 S nginx     2052  2045  0  80   0 - 27503 ep_pol 15:46 ?        00:00:00 nginx: worker process

伺服器設定檔為:

server {
    listen       80;
    server_name  XXX.XXX.XXX.B;

    location / {
        root   /var/www/wordpress;
        index index.php index.html index.htm;
        try_files $uri $uri/ /index.php?q=$uri&$args;
    }

    error_page 404 /404.html;
    location = /404.html {
        root /usr/share/nginx/html;
    }
    error_page 500 502 503 504 /50x.html;
    location = /50x.html {
        root /usr/share/nginx/html;
    }

    location ~ \.php$ {
        root /var/www/wordpress;
        fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

至於nginx設定檔:

user  nginx;
worker_processes  4;

error_log  /var/log/nginx/error.log;

pid        /run/nginx.pid;


events {
    worker_connections  1024;
}


http {
    include       /etc/nginx/mime.types;
    default_type  application/octet-stream;

    log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
                  '$status $body_bytes_sent "$http_referer" '
                  '"$http_user_agent" "$http_x_forwarded_for"';

    access_log  /var/log/nginx/access.log  main;

    sendfile        on;

    keepalive_timeout  65;

    index   index.html index.htm;

    include /etc/nginx/conf.d/*.conf;

    server {
    listen       80 default_server;
    server_name  localhost;
    root         /usr/share/nginx/html;

    include /etc/nginx/default.d/*.conf;

    location / {
    }

    error_page  404              /404.html;
    location = /40x.html {
    }

    error_page   500 502 503 504  /50x.html;
    location = /50x.html {
    }
    }
}

答案1

重要的不是 nginx 正在運行的用戶,而是 php-fpm 正在運行的用戶。畢竟,執行 PHP 腳本的是 PHP-FPM,而 WordPress 是在 PHP-FPM 運行使用者擁有的權限下運行的。

因此,請檢查您的上傳目錄是否可以由執行 PHP-FPM 的使用者寫入。

相關內容