2016-07-19 89 views
0

我在SSL_ERROR_LOG文件中遇到了这种Apache Proxy错误。代理服务器:错误从远程服务器读取状态行

[Mon Jul 18 11:03:52 2016] [error] [client [IPAddress]] (70007)The timeout specified has expired: proxy: error reading status line from remote server [serverIP] 
[Mon Jul 18 11:03:52 2016] [error] [client [IPAddress]] proxy: Error reading from remote server returned by /project/webservice 
[Mon Jul 18 11:12:53 2016] [error] [client [IPAddress]] (70007)The timeout specified has expired: proxy: error reading status line from remote server [serverIP] 
[Mon Jul 18 11:12:53 2016] [error] [client [IPAddress]] proxy: Error reading from remote server returned by /project/webservice 
[Mon Jul 18 11:15:53 2016] [error] [client [IPAddress]] (70007)The timeout specified has expired: proxy: error reading status line from remote server [serverIP] 
[Mon Jul 18 11:15:53 2016] [error] [client [IPAddress]] proxy: Error reading from remote server returned by /project/webservice 

这种错误的任何想法?客户端必须等待3分钟才能强制断开连接。 ssl证书更改后发生此错误。我们已经用SHA-1更新了证书,以便与所有浏览器兼容的SHA-2证书。 观察并记录了各种超时。

+0

和客户端得到这个错误2016年7月21日06:03:08 | ERROR | System.TimeoutException:请求频道在00:02:59.9531244之后等待回复时超时。增加传递给请求调用的超时值或增加绑定上的SendTimeout值。分配给此操作的时间可能是较长超时的一部分.---> System.TimeoutException:对'weburl'的HTTP请求已超过00:03:00的分配超时。分配给此操作的时间可能是更长时间的一部分。System.Net.WebException:操作已超时 – Priya

+0

任何建议? – Priya

回答

0

检查是否已安装了SELinux,如果这样的话使用下面的命令启动httpd的 -

sudo setsebool -P httpd_can_network_connect 1 
相关问题