普通网友 2019-03-07 17:06 采纳率: 50%
浏览 606

win10下的nginx+php做的socket访问一直超时

在win10 安装了php+nginx+mysql,phpinfo打印是正常的,但是在写了一个简单的socket的demo后,nginx一直报超时。
图片说明
就是这个错误。
nginx的错误日志:
2019/03/07 00:46:18 [error] 18316#16624: *1 upstream timed out (10060: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond) while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "GET /socket/client.php HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "127.0.0.1"

php的代码:
php代码是没有问题的,因为在apache下运行没问题。就是不知道nginx是什么情况。

$fp = fsockopen('localhost',80,$errno,$errstr,10); // 10秒超时
if (!$fp) {
    echo 'Error Code:'.$errno. '--Error Info:'.$errstr;
    die;
}
$http= '';
$http .= "GET /socket/server.php HTTP/1.1\r\n";

$http .= "Host: localhost\r\n";
$http .= "Connection: close\r\n\r\n";

fwrite($fp, $http);
$res = '';
while(!feof($fp)) {
    $res .= fgets($fp);
}
echo $res;
  • 写回答

1条回答 默认 最新

  • 序冢--磊 2019-03-08 15:17
    关注

    发送这个字符串 试试 "GET 127.0.0.1/socket/server.php HTTP/1.0\r\n\r\n"

    评论

报告相同问题?

悬赏问题

  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 划分vlan后不通了
  • ¥15 GDI处理通道视频时总是带有白色锯齿
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)
  • ¥15 自适应 AR 模型 参数估计Matlab程序
  • ¥100 角动量包络面如何用MATLAB绘制
  • ¥15 merge函数占用内存过大
  • ¥15 使用EMD去噪处理RML2016数据集时候的原理
  • ¥15 神经网络预测均方误差很小 但是图像上看着差别太大