我的清漆版本为3.0
。
我的服务器在卷曲URL时效果很好,但是当使用varnish cache时,它会偶尔返回503 service unavailable
。
日志信息喜欢:
0 Debug - "VCL_error(200, OK)"
24 VCL_call c recv error
24 VCL_call c error deliver
24 SessionClose c error
0 Debug - "VCL_error(200, OK)"
27 VCL_call c recv error
27 VCL_call c error deliver
27 SessionClose c error
0 Debug - "VCL_error(200, OK)"
16 VCL_call c recv error
16 VCL_call c error deliver
16 SessionClose c error
14 Debug - "Write error, retval = 2998272, len = 8465870, errno = Success"
0 Debug - "VCL_error(200, OK)"
14 VCL_call c recv error
14 VCL_call c error deliver
14 SessionClose c error
0 Debug - "VCL_error(200, OK)"
21 VCL_call c recv error
21 VCL_call c error deliver
21 SessionClose c error
PS:当我在浏览器上卷曲或输入网址时,服务器响应200。
答案 0 :(得分:10)
清漆503可通过以下步骤修复:
在后端设置中增加connect_timeout
,.first_byte_timeout
和.between_bytes_timeout
:
backend default {
.host = "www.example.com";
.connect_timeout = 5s;
.first_byte_timeout = 10s;
.between_bytes_timeout = 10s;
}
启动清漆时将参数增加到8192。
varnishd [options] http_resp_hdr_len=8192
结帐network
或backend server
。
如果第1步和第2步无法帮助您,请检查network connection
和banckend server's availability
。