phpinfo()导致503服务暂时不可用错误
phpinfo() causing 503 service temporarily unavailable error
我遇到了最奇怪的问题。最近几天我一直在处理文件上传问题,并且一直在使用 phpinfo()
来跟踪对 INI 设置的更改。上次摸是两天前的事了。。。当时还行。
今天,phpinfo()
导致 503 服务暂时不可用错误。这是奇怪的部分:网站运行良好! 我是 PHP + MySQL 驱动的,我可以在其中四处走动(好吧......除了我正在处理的问题)。但是一旦我添加 phpinfo()
显示为 <body>
块中的第一件事......我得到了错误。
我什至尝试创建一个单行文件:<?php phpinfo(); ?>
这也因 503 错误而死。
错误日志包含以下内容:
[Fri Sep 15 14:22:31.192593 2017] [proxy_fcgi:error] [pid 2695] (104)Connection reset by peer: [client 67.161.220.240:44230] AH01075: Error dispatching request to :
我重新启动了 Apache 和 Nginx,没有出现任何错误。有没有人知道我的机器上是什么服务或一些类似的服务可能会导致这种情况?
NGINX 配置文件
#user nginx;
worker_processes 1;
#error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
#pid /var/run/nginx.pid;
include /etc/nginx/modules.conf.d/*.conf;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#tcp_nodelay on;
#gzip on;
#gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server_tokens off;
include /etc/nginx/conf.d/*.conf;
}
# override global parameters e.g. worker_rlimit_nofile
include /etc/nginx/*global_params;
有没有可能是这个问题:
Apache, FastCGI - Error 503
(即快速 CGI 配置问题?)
我通过登录 PLESK 解决了这个问题。我转到工具与设置 -> 服务管理。
然后我重新启动了PHP-FPM 5.6.33服务(这可能会因PHP你运行的版本而异)。
在 re-start 之后,phpinfo()
工作正常。我不确定是什么问题。正如您所经历的,我的网站运行良好,但它可能导致了我不知道的其他问题。
我遇到了最奇怪的问题。最近几天我一直在处理文件上传问题,并且一直在使用 phpinfo()
来跟踪对 INI 设置的更改。上次摸是两天前的事了。。。当时还行。
今天,phpinfo()
导致 503 服务暂时不可用错误。这是奇怪的部分:网站运行良好! 我是 PHP + MySQL 驱动的,我可以在其中四处走动(好吧......除了我正在处理的问题)。但是一旦我添加 phpinfo()
显示为 <body>
块中的第一件事......我得到了错误。
我什至尝试创建一个单行文件:<?php phpinfo(); ?>
这也因 503 错误而死。
错误日志包含以下内容:
[Fri Sep 15 14:22:31.192593 2017] [proxy_fcgi:error] [pid 2695] (104)Connection reset by peer: [client 67.161.220.240:44230] AH01075: Error dispatching request to :
我重新启动了 Apache 和 Nginx,没有出现任何错误。有没有人知道我的机器上是什么服务或一些类似的服务可能会导致这种情况?
NGINX 配置文件
#user nginx;
worker_processes 1;
#error_log /var/log/nginx/error.log;
#error_log /var/log/nginx/error.log notice;
#error_log /var/log/nginx/error.log info;
#pid /var/run/nginx.pid;
include /etc/nginx/modules.conf.d/*.conf;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log /var/log/nginx/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#tcp_nodelay on;
#gzip on;
#gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server_tokens off;
include /etc/nginx/conf.d/*.conf;
}
# override global parameters e.g. worker_rlimit_nofile
include /etc/nginx/*global_params;
有没有可能是这个问题: Apache, FastCGI - Error 503
(即快速 CGI 配置问题?)
我通过登录 PLESK 解决了这个问题。我转到工具与设置 -> 服务管理。
然后我重新启动了PHP-FPM 5.6.33服务(这可能会因PHP你运行的版本而异)。
在 re-start 之后,phpinfo()
工作正常。我不确定是什么问题。正如您所经历的,我的网站运行良好,但它可能导致了我不知道的其他问题。