502bad gateway:connect() failed (111: Connection refused) while connecting to upstream

centos7开机,先setenforce 0,然后信心十足开机……结果502bad gateway。

昨天修改了用户组……

于是又把所有文件夹都修改用户组……

然而并没有什么用。

然后找nginx.conf,找到error.log路径,然后找到错误:

2019/09/04 09:56:12 [error] 23926#23926: *5 FastCGI sent in stderr: 
"PHP message: PHP Warning:  session_write_close(): open(/var/lib/php/session/sess_rqibgilrftrru17cs8sgq0fr66, 
O_RDWR) failed: 
No such file or directory (2) in /home/html/yii_basic/vendor/yiisoft/yii2/web/Session.php on line 192" 
while reading upstream, client: 192.168.44.1, server: www.eee.com,
 request: "GET / HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host: "www.eee.com"

https://blog.csdn.net/ljihe/article/details/78025133

https://blog.csdn.net/ljihe/article/details/78025133

先ps-ef|grep php-fpm,没有。

大概意思是你没有启动或者配置php-fpm.其中“/usr/local/nginx/html”为网站根目录。

而我刚好是没有启动php-fpm,在终端运行“service php-fpm start”;

ok,正常运行了。

浪费时间。

几个小时。

原来没有开机启动php-fpm。

应该设置开机启动吧?

你可能感兴趣的:(centos,php,nginx)