Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP-FPM: Operation not permitted

Tags:

php

nginx

centos

When I try to open index.php in browser I see the error:

No input file specified.

In error.log:

2013/11/04 22:40:07 [error] 3435#0: *4 FastCGI sent in stderr: "Unable to open primary script: /var/www/index.php (Operation not permitted)" while reading response header from upstream, client: 10.0.2.2, server: localhost, request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "localhost"

Configuration of the server:

  • CentOS 6.4
  • PHP 5.4.17 (installed from sources)
  • Nginx 1.0.15

PHP-FPM works from user nginx.

$ ps aux | grep fpm
root      3460  0.0  0.7  29524  3428 ?        Ss   22:48   0:00 php-fpm: master process (/usr/etc/php-fpm.conf)
nginx     3462  0.0  0.5  29524  2732 ?        S    22:48   0:00 php-fpm: pool www            
nginx     3463  0.0  0.5  29524  2732 ?        S    22:48   0:00 php-fpm: pool www            
nginx     3464  0.0  0.7  29524  3592 ?        S    22:48   0:00 php-fpm: pool www            
nginx     3465  0.0  0.5  29524  2732 ?        S    22:48   0:00 php-fpm: pool www            
nginx     3466  0.0  0.5  29524  2732 ?        S    22:48   0:00 php-fpm: pool www            
vagrant   3468  0.0  0.1   5532   720 pts/0    D+   22:48   0:00 grep fpm

$ ls -la /var/www
drwxr-xr-x   2 nginx nginx 4096 Ноя  4 22:34 .
drwxr-xr-x. 19 root  root  4096 Ноя  4 22:31 ..
-rw-r--r--   1 nginx nginx   17 Ноя  4 22:34 index.php

Switch on catch_workers_output doesn't help

like image 332
vanchester Avatar asked Nov 04 '13 22:11

vanchester


1 Answers

Problem was in non-existent path of setting session.save_path and not in list of setting open_basedir in php.ini

like image 154
vanchester Avatar answered Oct 17 '22 09:10

vanchester