nginx 설치오류

회원K   
   조회 16774   추천 0    

[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 {

- to be continue -
짧은글 일수록 신중하게.
에러 로그로만 보자면  php-fpm에 연결을 못한다는 이야기 입니다.
먼저  php-fpm을 재시작을 해보시고 9000번 포트가 정상적으로 연결되는지 확인해보시기 바랍니다.
참고로 php-fpm을 동일서버 로컬에서만 사용하신다면 upstream 을 tcp로 열지 마시고 소켓을 이용하시는것이 성능면에서 좋습니다.
     
회원K 2016-03
telnet> open localhost 9000
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도 동작하고 있는 것 같구요
회원K 2016-03
2016/03/20 22:56:44 [alert] 15458#15458: setrlimit(RLIMIT_NOFILE, 30000) failed (1: Operation not permitted)
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)
작은악마 2016-03
/etc/nginx/conf.d/default.conf
worker_rlimit_nofile 30000;
...
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
...


sysctl fs.file-max
fs.file-max = 70000

요렇게 해보시면 될실듯.
     
회원K 2016-03
worker_rlimit_nofile 30000;
--> /etc/nginx/nginx.conf 에 넣어져 있습니다.

/run/ 밑에 php 디렉토리가 없습니다. -..-...

file은 os 레벨에서 많이 늘려뒀구요.
음..에러로만 보자면 file open limit에 걸린듯 합니다 아니면 퍼미션 문제인듯 한데요?
접속이 많은 서버인가요?

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;
    }
     
회원K 2016-03
접속은 전혀 없습니다. 지난주에 입고해서 셋팅중이거든요.

# 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
회원K 2016-03
sestatus -v
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
회원K 2016-03
2016/03/21 22:28:26 [alert] 13280#13280: setrlimit(RLIMIT_NOFILE, 30000) failed (1: Operation not permitted)
/var/log/nginx/error.log에서 나오는 이것이 원인인 것 같은데 방법이 안보이네요.
작은악마 2016-03
redhat 계열 OS가 없다보니 테스트를 할수가 없네요....

fastcgi_param SCRIPT_FILENAME 부분을 아래와 같이 수정해보실수 있는지요?

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
     
회원K 2016-03
더 하다가 os를 재설치하는 상황이 생길 것 같아서
vm을 만들어서 처음부터 다시해야 할 것 같아요.
설치과정은 올려두겠습니다.
한번 리뷰해봐 주세요.
김제연 2016-03
작은 악마 님께서 리플 다신데로 하면 될것 같구요 ..
안되시면..
php 안쪽의

 root  /usr/share/nginx/html;
이거를 넣어주시고 .. nginx 및 php-fpm 재시작 하시면 안될 이유가 없어보이네요.
     
회원K 2016-03
안될 이유가 없는데 안되네요. ㅠㅠ...
php-fpm.conf
내용 올려주세요. php-fpm은 apache유저로 구동이 되고 nginx는 nginx로 구동이 되면서
뭔가 권한 문제가 생긴듯 보입니다.
     
회원K 2016-03
php70-php-fpm의 위치를 못 찾고 있습니다.
서버에서는 삭제하고 재설치 시작했습니다.
김제연 2016-03
회원K 2016-03
nginx 설치
http://2cpu.co.kr/PDS/11338

mariadb 설치
http://www.2cpu.co.kr/PDS/11339

php 7 설치


QnA
제목Page 2476/5725
2015-12   1769697   백메가
2014-05   5244251   정은준1
2016-03   5111   쁘삐
2016-03   9166   회원K
2016-03   4300   미친곰
2016-03   4216   회원K
2016-03   8090   차평석
2016-03   4544   제스퍼즈
2016-03   4200   카르하타
2016-03   8062   퍼싱글
2016-03   4925   미친곰
2016-03   3900   도브샴푸씀
2016-03   5353   지존컴퓨터
2016-03   4240   최시영
2016-03   12280   회원K
2016-03   4632   제스퍼즈
2016-03   4062   카르하타
2016-03   3920   MS77
2016-03   7441   김건우
2016-03   4934   Fasda
2016-03   3785   lovemiai
2016-03   5438   DoWoo