我有一台 CentOS 7 机器,上面运行着 Nginx,用户是“nginx”(CentOS 中的默认用户)。我已经安装了 Wordpress,它运行正常,并且我已为 nginx 用户授予了 wordpress 文件夹和子文件夹(775)中的写入权限,但仍然出现权限错误:
无法创建目录 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/run/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 的用户是否可以写入您的上传目录。