当前位置:Gxlcms >
PHP教程 >
遇到问题----connect()failed(111:Connectionrefused)whileconnectingtoupstream解决
遇到问题----connect()failed(111:Connectionrefused)whileconnectingtoupstream解决
时间:2021-07-01 10:21:17
帮助过:46人阅读
我们在启动 nginx时, 有可能遇到connect() failed (111: Connection refused) while connecting to upstream的问题。
有时候nginx运行很正常,但是会发现错误日志中依旧有报错connect() failed (111: Connection refused) while connecting to upstream.一般情况下我们的upstream都是fastcgi://127.0.0.1:9000. 造成这个问题的原因大致有三个
php-fpm没有安装
新买的阿里云服务器 就属于这种情况,有nginx,但是没安装php-fpm
这种情况下可参考
centos安装php php-fpm 以及 配置nginx
php-fpm没有运行
执行如下命令查看是否启动了php-fpm,如果没有则启动你的php-fpm即可
netstat -ant | grep 9000
sudo /usr/local/php/sbin/php-fpm
php-fpm队列满了
php-fpm.conf配置文件pm.max_children修改大一点,重启php-fpm并观察日志情况
以上就介绍了遇到问题----connect() failed (111: Connection refused) while connecting to upstream解决,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。