Centos

CentOS 7 Nginx下Wordpress沒有寫權限

  • May 4, 2015

我有一台執行 Nginx 的 CentOS 7 機器,使用者是“nginx”(CentOS 中的預設使用者)。我已經安裝了執行良好的 Wordpress,並且我在 wordpress 文件夾和子文件夾(775)中為 nginx 使用者授予了 wrtite 權限,但仍然出現權限錯誤:

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

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

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

編輯:

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

2015/05/03 20:42:41

$$ error $$23652#0:*1 FastCGI 在標準錯誤中發送:“無法打開主腳本:/usr/share/nginx/html/index.php(沒有這樣的文件或目錄)”同時從上游讀取響應標頭,客戶端:XXX.XXX .XXX.A,伺服器:XXX.XXX.XXX.B,請求:“GET / HTTP/1.1”,上游:“fastcgi://unix:/var/run/php-fpm/php-fpm.sock:” ,主機:“XXX.XXX.XXX.B” 2015/05/03 20:44:18

$$ error $$23652#0:*3 FastCGI 在標準錯誤中發送:“無法打開主腳本:/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 {
   }
   }
}

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

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

引用自:https://serverfault.com/questions/688461