[error] 14479#14479: *120 connect() failed (111: Connection refused) while connecting to upstream, client: ip주소, server: localhost, request: "GET /bbs/board.php?bo_table=g4_100 HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "서버ip주소"
nginx 최근 버젼을 yum으로 설치하고
접속을 하려고 하니 다음과 같이 오류가 나옵니다.
php 7은 remi의 repo에서 yum으로 설치했구요.
어떻게 해야 할까요?
stackoverflow.com 의 답변들도 도움이 안되네요.
/etc/nginx/conf.d/default.conf
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
location / {
root /usr/share/nginx/html;
index index.php index.html;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
location ~ \.php$ {
proxy_pass http://127.0.0.1;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ \.php$ {
#root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
include fastcgi_params;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
먼저 php-fpm을 재시작을 해보시고 9000번 포트가 정상적으로 연결되는지 확인해보시기 바랍니다.
참고로 php-fpm을 동일서버 로컬에서만 사용하신다면 upstream 을 tcp로 열지 마시고 소켓을 이용하시는것이 성능면에서 좋습니다.
Trying ::1...
telnet: connect to address ::1: Connection refused
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Connection closed by foreign host.
9000번은 연결되고 있는 것 같습니다.
# systemctl | grep php
php70-php-fpm.service loaded active running The PHP FastCGI Process Manager
php70-php-fpm도 동작하고 있는 것 같구요
2016/03/20 22:56:56 [alert] 15458#15458: *13176 socket() failed (24: Too many open files) while connecting to upstream, client: 127.0.0.1, server: localhost, request: "GET /index.php HTTP/1.0", upstream: "http://127.0.0.1:80/index.php", host: "127.0.0.1"
2016/03/20 22:56:56 [crit] 15458#15458: *13176 open() "/usr/share/nginx/html/50x.html" failed (24: Too many open files), client: 127.0.0.1, server: localhost, request: "GET /index.php HTTP/1.0", upstream: "http://127.0.0.1:80/index.php", host: "127.0.0.1"
2016/03/21 08:26:42 [alert] 1894#1894: setrlimit(RLIMIT_NOFILE, 30000) failed (1: Operation not permitted)
worker_rlimit_nofile 30000;
...
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
...
sysctl fs.file-max
fs.file-max = 70000
요렇게 해보시면 될실듯.
--> /etc/nginx/nginx.conf 에 넣어져 있습니다.
/run/ 밑에 php 디렉토리가 없습니다. -..-...
file은 os 레벨에서 많이 늘려뒀구요.
접속이 많은 서버인가요?
1. 시스템 open file-max값 확인
cat /proc/sys/fs/file-max
2. selinux확인
3. nginx 데몬 구동 유저와 php-fpm 유저 확인
4. ulimit 값 확인 후 값 수정
ulimit -n
vi /etc/security/limits.conf
* soft nofile 65535
* hard nofile 65535
근데 fastcgi로 php 스크립트 넘겨주는 설정이 아래에 있는데 아래의 설정은 왜 있는 것이죠?
아래 빼고 다시 nginx 구동해 보세요.
location ~ \.php$ {
proxy_pass http://127.0.0.1;
}
# cat /proc/sys/fs/file-max
8586507
/etc/security/limits.conf
nginx soft nofile 10000
nginx hard nofile 30000
# location ~ \.php$ {
# proxy_pass http://127.0.0.1;
# }
# ps -ef | grep nginx
root 13276 1 0 22:28 ? 00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nginx 13277 13276 0 22:28 ? 00:00:00 nginx: worker process
nginx 13278 13276 0 22:28 ? 00:00:00 nginx: worker process
nginx 13279 13276 0 22:28 ? 00:00:00 nginx: worker process
nginx 13280 13276 0 22:28 ? 00:00:00 nginx: worker process
[root@kcolo122-198 conf.d]# ps -ef | grep fpm
root 1701 1 0 08:26 ? 00:00:02 php-fpm: master process (/etc/opt/remi/php70/php-fpm.conf)
apache 13093 1701 0 21:30 ? 00:00:00 php-fpm: pool www
apache 13094 1701 0 21:30 ? 00:00:00 php-fpm: pool www
apache 13095 1701 0 21:30 ? 00:00:00 php-fpm: pool www
apache 13096 1701 0 21:30 ? 00:00:00 php-fpm: pool www
apache 13097 1701 0 21:30 ? 00:00:00 php-fpm: pool www
SELinux status: enabled
SELinuxfs mount: /sys/fs/selinux
SELinux root directory: /etc/selinux
Loaded policy name: targeted
Current mode: enforcing
Mode from config file: enforcing
Policy MLS status: enabled
Policy deny_unknown status: allowed
Max kernel policy version: 28
Process contexts:
Current context: unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023
Init context: system_u:system_r:init_t:s0
/usr/sbin/sshd system_u:system_r:sshd_t:s0-s0:c0.c1023
File contexts:
Controlling terminal: unconfined_u:object_r:user_devpts_t:s0
/etc/passwd system_u:object_r:passwd_file_t:s0
/etc/shadow system_u:object_r:shadow_t:s0
/bin/bash system_u:object_r:shell_exec_t:s0
/bin/login system_u:object_r:login_exec_t:s0
/bin/sh system_u:object_r:bin_t:s0 -> system_u:object_r:shell_exec_t:s0
/sbin/agetty system_u:object_r:getty_exec_t:s0
/sbin/init system_u:object_r:bin_t:s0 -> system_u:object_r:init_exec_t:s0
/usr/sbin/sshd system_u:object_r:sshd_exec_t:s0
/var/log/nginx/error.log에서 나오는 이것이 원인인 것 같은데 방법이 안보이네요.
fastcgi_param SCRIPT_FILENAME 부분을 아래와 같이 수정해보실수 있는지요?
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
vm을 만들어서 처음부터 다시해야 할 것 같아요.
설치과정은 올려두겠습니다.
한번 리뷰해봐 주세요.
안되시면..
php 안쪽의
root /usr/share/nginx/html;
이거를 넣어주시고 .. nginx 및 php-fpm 재시작 하시면 안될 이유가 없어보이네요.
내용 올려주세요. php-fpm은 apache유저로 구동이 되고 nginx는 nginx로 구동이 되면서
뭔가 권한 문제가 생긴듯 보입니다.
서버에서는 삭제하고 재설치 시작했습니다.
selinux 관련 오류인가봐요.
http://2cpu.co.kr/PDS/11338
mariadb 설치
http://www.2cpu.co.kr/PDS/11339
php 7 설치