Nginx上行超时

新手到Nginx和Tomcat设置。 有人能帮我理解这个错误信息的含义吗?

2014/09/21 00:10:03 [error] 293#0: *127 upstream timed out (60: Operation timed out) while reading response header from upstream, client: 192.168.10.211, server: my.server.com, request: "POST /path/dosomething.json HTTP/1.1", upstream: "http://192.168.10.11:7070/path/dosomething.json";, host: "my.server.com"

nginx上打开debugging模式时。

2014/09/21 13:19:54 [error] 303#0: *37 upstream timed out (60: Operation timed out) while reading response header from upstream, client: --- same as above ---

7070Tomcat 。 我注意到这是在tomcat重新启动后的第一个查询。 但之后的下一个查询给出了上述错误信息。 nginxTomcat在同一个盒子里。

有人可以引导我,这个错误信息是什么意思,如何解决这个问题。

谢谢

这意味着在请求http://192.168.10.11:7070/path/dosomething.json nginx会在用于与您的tomcat服务器通信的套接字上挂起proxy_read_timeout秒数,并且没有收到任何数据。 调查tomcat的一方,理解为什么它不及时做出反应。