首页 > 代码库 > Nginx错误日志整理
Nginx错误日志整理
Nginx错误日志说明
错误日志类型
-
类型1: upstream timed out
-
类型2: connect() failed
-
类型3: no live upstreams
-
类型4: upstream prematurely closed connection
-
类型5: 104: Connection reset by peer
-
类型6: client intended to send too large body
-
类型7: upstream sent no valid HTTP/1.0 header
类型 |
错误日志 |
原因 |
解决办法 |
---|---|---|---|
1 | upstream timed out (110: Connection timed out) while connecting to upstream | nginx与upstream建立tcp连接超时,nginx默认连接建立超时为200ms | 排查upstream是否能正常建立tcp连接 |
1 | upstream timed out (110: Connection timed out) while reading response header from upstream | nginx从upstream读取响应时超时,nginx默认的读超时为20s,读超时不是整体读的时间超时,而是指两次读操作之间的超时,整体读耗时有可能超过20s | 排查upstream响应请求为什么过于缓慢 |
2 | connect() failed (104: Connection reset by peer) while connecting to upstream | nginx与upstream建立tcp连接时被reset | 排查upstream是否能正常建立tcp连接 |
2 | connect() failed (111: Connection refused) while connecting to upstream | nginx与upstream建立tcp连接时被拒 | 排查upstream是否能正常建立tcp连接 |
3 | no live upstreams while connecting to upstream | nginx向upstream转发请求时发现upstream状态全都为down | 排查nginx的upstream的健康检查为什么失败 |
4 | upstream prematurely closed connection | nginx在与upstream建立完tcp连接之后,试图发送请求或者读取响应时,连接被upstream强制关闭 | 排查upstream程序是否异常,是否能正常处理http请求 |
5 | recv() failed (104: Connection reset by peer) while reading response header from upstream | nginx从upstream读取响应时连接被对方reset | 排查upstream应用已经tcp连接状态是否异常 |
6 | client intended to send too large body | 客户端试图发送过大的请求body,nginx默认最大允许的大小为1m,超过此大小,客户端会受到http 413错误码 |
|
7 | upstream sent no valid HTTP/1.0 header | nginx不能正常解析从upstream返回来的请求行 | 排查upstream |
openresty 遇到的错误信息
错误: an upstream response is buffered to a temporary file
#允许客户端请求的最大字节 client_max_body_size 50m; #缓冲区最大字节 client_body_buffer_size 256k; #代理服务器链接后端服务器的超时时间 proxy_connect_timeout 30; #代理服务器等待后端服务器响应的超时时间 proxy_read_timeout 60; #后端服务器返回数据给代理服务器的最大传输时间 proxy_send_timeout 30; #代理服务器缓冲区大小,客户端的头信息会保存在这里 proxy_buffer_size 64k; #代理服务器有几个缓冲区,最大是多大 proxy_buffers 4 64k; #代理服务器烦方式可以申请更大的缓冲区,Nginx官方推荐为*2即可 proxy_busy_buffers_size 128k; #代理服务器临时文件大小 proxy_temp_file_write_size 256k;
Nginx错误日志整理
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。