A simple script to monitor 502, and if it encounters 502, automatically restarts the PHP process. Suitable for LNMP environments.The following files are stored in/root or other directories:#!/bin/bashMY_URL="http://www.tarena.com.cn/"RESULT=`curl -I $MY_URL|grep"HTTP/1.1 502"`if[ -n "$RESULT"]; then/etc/init.d/php-fpm restartfiGive executable permission:chmod+x /
Today, after the upgrade of PHP 502 Bad Gateway error, according to experience is PHP-FPM problem, but see what traffic on the Internet, child process settings, but I do not have any traffic on the server. So you can only look at the configuration file.
[Global]
PID =/usr/local/php/var/run/php-fpm.pid
error_log =/usr/l
There was a strange problem today when the form was submitted directly 502 bad gateway! Begin to suspect is a program problem, then check the program is normal, found that post field number is greater than 1000 when 502 bad Gateway
There are 502 errors in php-cgi processes, long PHP execution time, or php-cgi process death.
1). Long PHP Execution Time
If the server performance is good enough and the broadband resources are sufficient, the PHP script does not have a loop or bug, you can set the "request_terminate_timeout" to 0s directly.PHP-FPM.CONF 103 lines Around
The code is as follows
Copy Code
The meaning of 0s is to allow php-cgi to
Received an alert email today prompting the website 502 Bad Gateway,You cannot open the Web site URL after entering it:Log on to the server to see Nginx process OK:To view the FASTCGI process has stopped running:Problems found after the search is what the cause of the problem, the first fastcgi process started after the site can access the reasons for fine.View P
Millions of data were checked directly Nginx 502 bad gateway. Another server is good. I cannot log on to the server to view the configuration. Ask you to get nginx+php comrades. What are the settings of your server? I sent it to the hardware department.
Reply to discussion (solution)
502 is usually the php-fpm o
The principle is to use curl to obtain the HTTP header and execute the command to restart PHP-FPM when the 502 status code is found.
CopyCodeThe Code is as follows :#! /Usr/bin/PHP
$ Cmd = '/usr/local/PHP/sbin/PHP-FPM restart ';
For ($ I = 0; $ I $ Res = shell_exec ($ Exec );
If (stripos ($ res, '2014, 502 Bad gateway
The principle is to use Curl to obtain HTTP headers, found 502 status code to perform the restart PHP-FPM command.
Copy Code code as follows:
#!/usr/bin/php
$cmd = '/usr/local/php/sbin/php-fpm restart ';
for ($i = 0; $i $res = Shell_exec ($exec);
if (Stripos ($res, ' 502 Bad Gateway ')!== false) {
S
Http://www.apelearn.com/study_v2/chapter18.htmlSince Amin's PHP version is 5.3, I've loaded 5.5.502 errors occurred in the testView logs with nginx error log for troubleshooting Vim/usr/local/nginx/logs/nginx_error.logDisplay: Connect () to Unix:/tmp/php-fcgi.sock failed (13:permission denied) and connecting to upstream, client:127.0.0.1, Server:localhost, Request: "Get/2.php http/1.1", Upstream: "Fastcgi://unix:/tmp/php-fcgi.sock:", Host: "LocalHost"
Tags: lnmp nginx PHPWhen the website was relocated to a new server, it was originally lamp and now changed to lnmp.Change the rewrite file htaccess to nginx Conf. You can only open the home page on a website. When other rewrite pages are opened, they are constantly loaded.Loading will prompt after several minutes502Bad Gateway!......Later, I checked the rewrite rules one by one and found that there was no problem with the program because of the databa
occur during installation and use. Generally, the default PHP-CGI process is five, which may be caused by insufficient phpcgi processes, you need to modify/usr/local/PHP/etc/php-fpm.conf to add the max_children value as appropriate. It is also possible that the max_requests value is insufficient. It must be noted that this configuration item occupies a large amount of memory. Please set it according to the server configuration. Otherwise, it may have a negative effect.
Iv. PHP Execution timeout
Output Log configuration:http://blog.csdn.net/wzy_1988/article/details/8486888Solution:Http://www.cnblogs.com/jackluo/p/3366612.htmlAbout the 502 solution caused by file_get_contents:Http://www.111cn.net/phper/php-function/55873.htmHttp://www.qetee.com/share/php-fpm-cpu100.htmlReplace the system's own file_get_contents with the file_get_content function of your own package= stream_context_create (Array ( 'http' = = Array (' Timeout'// s
Nginx can receive 80 requests, but cannot go to tomcat:8080.
Direct access to Http://x.x.x.x:8080/project can be accessed
View/var/log/nginx/error.log
2015/04/01 11:38:13 [crit] 2895#0: *10 connect () to 127.0.0.1:8080 failed (13:permission denied) while connecting to Upstream, client:10.12.70.206, server:localhost:8080, Request: "GET/BPP http/1.1", Upstream: "http://127.0.0.1:8080/ App ", Host:" 10.11.202.204 "
Solution:
Http://stackoverflow.com/questions/25235453/nginx-proxy-server-localhost-
Nginx 502 has many reasons, but most of the reasons can be attributed to the lack of resources, that is, the back-end php-fpm processing problems, nginx the correct client request to the backend PHP-FPM process, However, because of the PHP-FPM process problems caused by the failure to parse the PHP code correctly, finally returned to the client 502 error.
The se
README directly. As a result, the 502 bad gateway error was caused.
The HTTP status code with 5 headers is caused by the server, so check the nginx log:
Error log:
See upstream: "fastcgi: // 127.0.0.1: 9090". Here, the port seems to be incorrect, so check the configuration
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.