LNMP中部署网站,localhost无法访问

打开nginx.conf配置文件

vim /data/server/nginx/conf/nginx.conf

可以看到文件中:

fastcgi_pass 127.0.0.1:9000;

命令行检查端口是否处于监听状态:

netstat -antp | grep 9000

如果没监听需要启动。

php-cgi -b 127.0.0.1:9000

然后重启nginx

/data/server/nginx/sbin/nginx -s reload

再检查端口是否处于监听状态,就能检查到了
image
此时浏览器可以正常访问localhost了。

参考:https://blog.csdn.net/weixin_39834745/article/details/116004978

posted @ 2022-07-13 21:25  子初Nki  阅读(212)  评论(0编辑  收藏  举报