web-dev-qa-db-ja.com

CentOS7のNginxでのWordpress)の書き込み権限がありません

Nginxを実行しているCentOS7マシンがあり、ユーザーは「nginx」(CentOSのデフォルトのマシン)です。完全に機能しているWordpressをインストールし、nginxユーザーにwordpressフォルダーとサブフォルダー(775)でwrtiteパーミッションを付与しましたが、それでもパーミッションエラーが発生します:

ディレクトリwp-content/uploads/2015/05を作成できません

どのユーザーがnginxワーカープロセスを実行しているかを再確認しました。これはnginxです。

それは私が逃した些細なことであるに違いありません。誰かが私を助けることができますか?

編集:

/var/log/nginx/error.logでこれに気づきました:

2015/05/03 20:42:41 [エラー] 23652#0:* 1 stderrで送信された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 [エラー] 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 {
    }
    }
}
3
NotFromBrooklyn

重要なのはユーザーnginxが実行されているのではなく、php-fpmが実行されているユーザーです。結局のところ、PHPスクリプトを実行するのはPHP-FPMであり、WordPressはPHP-FPMを実行しているユーザーが持っている特権の下で実行されています。

したがって、PHP-FPMを実行しているユーザーがアップロードディレクトリを作成できることを確認してください。

4
Tero Kilkanen