<![CDATA[Latest posts for the topic "Sever bị lỗi 502 bad gateway (nginx, php-fpm)"]]> /hvaonline/posts/list/24.html JForum - http://www.jforum.net Sever bị lỗi 502 bad gateway (nginx, php-fpm) Code:
2013/04/04 16:57:49 [error] 28414#0: *10337 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:49 [error] 28414#0: *10166 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:49 [error] 28414#0: *10335 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:49 [error] 28414#0: *10341 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:49 [error] 28414#0: *10005 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:49 [error] 28414#0: *10345 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:49 [error] 28414#0: *10344 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10350 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10353 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10362 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10360 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10366 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10367 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10370 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10371 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
2013/04/04 16:57:50 [error] 28414#0: *10374 connect() to unix:/tmp/php-fpm.sock failed (11: Resource temporarily unavailable) while connecting to upstream, client:
]]>
/hvaonline/posts/list/44530.html#274696 /hvaonline/posts/list/44530.html#274696 GMT
Sever bị lỗi 502 bad gateway (nginx, php-fpm) /hvaonline/posts/list/44530.html#274712 /hvaonline/posts/list/44530.html#274712 GMT Sever bị lỗi 502 bad gateway (nginx, php-fpm) Code:
[abc]

listen = /tmp/php-fpm.sock

listen.backlog = -1


listen.allowed_clients = 127.0.0.1


listen.owner = nobody
listen.group = nobody
listen.mode = 0666


user = nobody
group = nobody


pm = static

pm.max_children = 128

pm.start_servers = 128

pm.min_spare_servers = 30

pm.max_spare_servers = 80

pm.max_requests = 500


pm.status_path = /php-fpm-status/status.php

ping.path = /php-fpm-ping/ping.php

ping.response = pong
nginx.conf Code:
worker_processes        16;

events {
        use                     epoll;
        worker_connections      1024;
}

http {
        # php-fpm backend
        upstream php {
                server          unix:/tmp/php-fpm.sock;
        }

        # general proxying rules
        proxy_set_header        X-Real-IP       $remote_addr;
        proxy_set_header        X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header        Host            $host;
        proxy_buffer_size       32k;
        proxy_buffers           16      32k;
        proxy_wwwect          off;

        # fastcgi configuration
        fastcgi_connect_timeout 60;
        fastcgi_send_timeout    180;
        fastcgi_read_timeout    180;
        fastcgi_buffer_size     128k;
        fastcgi_buffers         32      32k;
        fastcgi_busy_buffers_size       256k;
        fastcgi_temp_file_write_size    256k;
        fastcgi_intercept_errors        on;

#       access_log              on;
#       error_log               off;
        include                 mime.types;
        default_type            application/octet-stream;

        keepalive_timeout       0;

        gzip                    on;
        gzip_types              text/css text/xml application/x-javascript application/atom+xml application/rss+xml text/plain text/javascript;

        server_tokens           off;

        sendfile                on;
        tcp_nopush              on;
        tcp_nodelay             on;

        client_max_body_size    32M;

server {
                listen          xxx.xxx.xxx.xxx:80;
                server_name     domain.comt;

                root            /home/admin/domains/domain.com/public_html;

                location / {
                        index           index.html      index.php;
#               access_log              on;

               }


                location /clear.gif {
                        empty_gif;
        access_log              off;
                }


                location ~ \.(png|gif|jpg|jpeg|swf|css|js|ico)$ {
                        expires         90d;
        access_log              off;
                }

                location ~ ^/php-fpm-(status|ping)$ {
                        include         fastcgi_params;
                        fastcgi_pass    php;
                        fastcgi_param   SCRIPT_FILENAME $fastcgi_script_name;
                }


                location /archive/index.php {
                        include         fastcgi_params;
                        fastcgi_pass    php;
                        fastcgi_param   SCRIPT_FILENAME $document_root/archive/index.php;
        access_log              off;
                }

                location ~ \.php$ {
#        access_log              on;
                        if ($remote_addr = 0) {
                                rewrite ^(.*)$  http://lol.com/$1       break;
                        }

                        include         fastcgi_params;
                        if ($uri !~ "^/customavatars/"){
                                fastcgi_pass    php;
                        }
#                       fastcgi_param   SCRIPT_FILENAME $fastcgi_script_name;
                }

        error_page  502              /502.html;
        location = /502.html {
            root   /usr/local/nginx/html;
        }




        }
}
]]>
/hvaonline/posts/list/44530.html#274715 /hvaonline/posts/list/44530.html#274715 GMT
Sever bị lỗi 502 bad gateway (nginx, php-fpm) /hvaonline/posts/list/44530.html#274723 /hvaonline/posts/list/44530.html#274723 GMT Sever bị lỗi 502 bad gateway (nginx, php-fpm)

xwm wrote:
Mình thấy file cấu hình php-fpm bạn ok rồi. Bạn kiểm tra lại xem php-fpm coi có đang chạy không (service php-fpm status). Nếu đang chạy mà vẫn báo lỗi bạn thử thay bằng đoạn này: location ~ \.php$ { root /home/admin/domains/domain.com/public_html/; index index.php index.html index.htm; fastcgi_pass php; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } Có thắc mắc bạn liên hệ với mình qua email root@xgr0up.net cho tiện nhé. 
Thỉnh thoảng vẫn lỗi cậu ơi Khi lỗi thì restart lại php-fpm là lại vào đc :( ]]>
/hvaonline/posts/list/44530.html#274839 /hvaonline/posts/list/44530.html#274839 GMT
Sever bị lỗi 502 bad gateway (nginx, php-fpm) /hvaonline/posts/list/44530.html#274997 /hvaonline/posts/list/44530.html#274997 GMT Sever bị lỗi 502 bad gateway (nginx, php-fpm) "pm = dynamic" cho php-fpm mà chỉnh "pm = static"? Máy cấu hình mạnh hay nhẹ? Nên chỉnh lại hết mấy cái này tùy theo cấu hình. Không nên nhét các con số vô trong đó mà không theo dõi và rút tỉa từ tình hình và khả năng của máy trên thực tế.: pm.max_children = 128 pm.start_servers = 128 pm.min_spare_servers = 30 pm.max_spare_servers = 80 pm.max_requests = 500]]> /hvaonline/posts/list/44530.html#275132 /hvaonline/posts/list/44530.html#275132 GMT Sever bị lỗi 502 bad gateway (nginx, php-fpm)

conmale wrote:
Chậc.... Máy có bao nhiêu core mà set "worker_processes 16;"? Sao không chỉnh "pm = dynamic" cho php-fpm mà chỉnh "pm = static"? Máy cấu hình mạnh hay nhẹ? Nên chỉnh lại hết mấy cái này tùy theo cấu hình. Không nên nhét các con số vô trong đó mà không theo dõi và rút tỉa từ tình hình và khả năng của máy trên thực tế.: pm.max_children = 128 pm.start_servers = 128 pm.min_spare_servers = 30 pm.max_spare_servers = 80 pm.max_requests = 500 
Sv em 16core nên em để worker_processes 16 Trên sv có 1 site chạy thì em nghĩ để static sẽ tốt hơn ]]>
/hvaonline/posts/list/44530.html#275186 /hvaonline/posts/list/44530.html#275186 GMT
Sever bị lỗi 502 bad gateway (nginx, php-fpm)

phuongtnotv wrote:

conmale wrote:
Chậc.... Máy có bao nhiêu core mà set "worker_processes 16;"? Sao không chỉnh "pm = dynamic" cho php-fpm mà chỉnh "pm = static"? Máy cấu hình mạnh hay nhẹ? Nên chỉnh lại hết mấy cái này tùy theo cấu hình. Không nên nhét các con số vô trong đó mà không theo dõi và rút tỉa từ tình hình và khả năng của máy trên thực tế.: pm.max_children = 128 pm.start_servers = 128 pm.min_spare_servers = 30 pm.max_spare_servers = 80 pm.max_requests = 500 
Sv em 16core nên em để worker_processes 16 Trên sv có 1 site chạy thì em nghĩ để static sẽ tốt hơn  
Bạn không nói rõ thông số cấu hình server của bạn như thế nào, chỉ có phần cấu hình PHP-FPM và Nginx như vậy thì không đủ để mọi người đưa ra ý kiến góp ý đâu :)]]>
/hvaonline/posts/list/44530.html#280084 /hvaonline/posts/list/44530.html#280084 GMT