PHP学习过程中遇到的坑

在使用Windows服务器的PHPStudy环境中,遇到第二天PHP文件访问时Nginx报错,错误日志显示上游连接超时。通过`netstat -ano`检查发现9000端口未开放,重启服务器后问题得到解决。目前Nginx配置中该问题的原因尚未明确,寻求解决方案。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

使用windows服务器,phpstuday 第一天服务器配置好访问没有问题。第二天发现访问php文件nginx会报错,以下是错误日志:
2018/12/08 16:26:34 [error] 35824#34560: *55 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 connecting to upstream, client: 183.158.123.143, server: xxxx, request: “GET / HTTP/1.1”, upstream: “fastcgi://127.0.0.1:9000”, host: “xxx”
2018/12/08 16:31:18 [error] 35824#34560: *118 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 connecting to upstream, client: 183.158.123.143, server: xxxx, request: “GET / HTTP/1.1”, upstream: “fastcgi://127.0.0.1:9000”, host: “xxx”
网上搜索很多办法配置没有结果。
使用cmd查看 netstat -ano 发现9000端口关闭
重启服务器后解决问题
以下是nginx配置

	location ~ \.php(.*)$ {
            fastcgi_pass   127.0.0.1:9000;
            fastcgi_index  index.php;
            fastcgi_split_path_info  ^((?U).+\.php)(/?.+)$;
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
            fastcgi_param  PATH_INFO  $fastcgi_path_info;
            fastcgi_param  PATH_TRANSLATED  $document_root$fastcgi_path_info;
            include        fastcgi_params;
        }

暂时还没找到原因,哪位大神有好的解决办法或者知道原因,请私聊或者评论

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值