问题如下图:
1.检查Nginx配置文件:nginx -t
2.每次修改配置文件都要重新加载、启动
nginx -s reload # 重新载入配置文件
nginx -s reopen # 重启 Nginx
3.查看nginx进程
4.查看防火墙状态(不同Linux版本防火墙不同,以CentOS Linux release 7.9为例)
查看状态:systemctl status firewalld
关闭状态如下图:
开启状态如下图:
停止并禁用开机启动:systemctl disable firewalld
禁用防火墙:systemctl stop firewalld
启动防火墙:systemctl start firewalld
设置开机启动:systemctl enable firewalld
重启防火墙:systemctl restart firewalld
标签:配置文件,启动,无法访问,防火墙,firewalld,nginx,systemctl,页面 From: https://www.cnblogs.com/ZhaoHS/p/17072021.html