504 网关超时媒体寺
Posted
技术标签:
【中文标题】504 网关超时媒体寺【英文标题】:504 Gateway Time-out media temple 【发布时间】:2012-09-22 05:55:42 【问题描述】:当我的 php 脚本需要运行超过 60 秒时,我不断收到 504 网关错误。
我在专用服务器上的 Media Temple 上。我已经联系了 Media Temple,他们很有帮助,但他们的建议似乎都对我不起作用。我被告知要编辑这个文件。
/etc/httpd/conf.d/fcgid.conf
我有...见下文
LoadModule fcgid_module modules/mod_fcgid.so
<IfModule mod_fcgid.c>
<IfModule !mod_fastcgi.c>
AddHandler fcgid-script fcg fcgi fpl
</IfModule>
FcgidIPCDir /var/run/mod_fcgid/sock
FcgidProcessTableFile /var/run/mod_fcgid/fcgid_shm
FcgidIdleTimeout 300
FcgidMaxRequestLen 1073741824
FcgidProcessLifeTime 10000
FcgidMaxProcesses 64
FcgidMaxProcessesPerClass 15
FcgidMinProcessesPerClass 0
FcgidConnectTimeout 600
FcgidIOTimeout 600
FcgidInitialEnv RAILS_ENV production
FcgidIdleScanInterval 600
</IfModule>
我已尽我所能将所有内容最大化。为了测试这一点,我只是运行下面的函数。
function test504()
@set_time_limit(0);
sleep(60);
echo "true";
Sleep 对任何低于 60 秒的值都有效,但任何超过 60 秒的值都会导致 504 网关错误
我的 phpinfo();输出
max_execution_time 600
max_input_time 180
我看过一些关于增加 fastcgi_connect_timeout 设置的帖子,但不知道在哪里可以找到 Media Temple。
有人可以帮忙吗?谢谢。
** 更新 **
在与支持人员交谈后,我被告知我需要编辑 nginx.conf 并被定向到此帖子 http://blog.secaserver.com/2011/10/nginx-gateway-time-out/
我在服务器设置中找不到任何值。 client_header_timeout client_body_timeout 发送超时 fastcgi_read_timeout
我的 nginx.conf 文件看起来像这样
#error_log /var/log/nginx/error.log info;
#pid /var/run/nginx.pid;
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 120;
#tcp_nodelay on;
#gzip on;
#gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server_tokens off;
include /etc/nginx/conf.d/*.conf;
** 更新 **
我设法解决了这个问题,并添加了一篇关于我如何修复它的博客文章。
http://devsforrest.com/116/boost-settings-on-media-temple-for-maximum-settings
【问题讨论】:
我认为这是一个新设置,因为我从来没有遇到过他们的旧服务器的问题,但是我打开了一个新服务器并遇到了这个问题。你的帖子真的很有帮助。我的应用程序在 Apache 模块模式下运行,这仍然解决了问题。真的很有帮助! 嘿@user1503606 - 你的最后一次更新有效!将其发布为您的答案,并因找到解决方案而获得荣誉。 我建议您重构您的应用程序以消除运行脚本超过 200 毫秒的需要。您可能需要将一些繁重的逻辑移到后台。使用以下任何技术来帮助您:AJAX、消息队列、内存缓存、标志文件。 【参考方案1】:我也遇到了同样的问题,我通过编辑 nginx.conf 文件解决了这个问题。在大多数情况下,这可以通过在 nginx.conf 中添加/增加 send_timeout 指令来解决。
找到您的 nginx.conf 文件(通常位于 /usr/local/nginx/nginx.conf
或有时位于 /etc/nginx/sites-available/default
),使用 nano 或任何其他文本编辑器打开它,并在 之间添加以下行http 所以它看起来像:
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 120;
#tcp_nodelay on;
#gzip on;
#gzip_disable "MSIE [1-6]\.(?!.*SV1)";
server_tokens off;
send_timeout 10m;
include /etc/nginx/conf.d/*.conf;
就我而言,我不得不增加一些其他指令,例如:
client_header_timeout 10m;
client_body_timeout 10m;
send_timeout 10m;
fastcgi_read_timeout 10m;
也是。
编辑完文件后,只需使用以下命令重新加载 nginx:
kill -HUP `ps -ef | grep nginx | grep master | awk 'print $2'`
或
sudo service nginx restart
这应该可以解决它。
(我在这里找到了指令:http://blog.secaserver.com/2011/10/nginx-gateway-time-out/)
PS:我看到 OP 的评论带有指向他们博客的链接,但我认为在此处添加相关信息可能会有所帮助。
【讨论】:
以上是关于504 网关超时媒体寺的主要内容,如果未能解决你的问题,请参考以下文章