美文网首页
2022-05-19 Linux下启动和关闭nginx命令,

2022-05-19 Linux下启动和关闭nginx命令,

作者: netppp | 来源:发表于2022-05-19 16:02 被阅读0次

linux 下面启动nginx 和关闭nginx, 查看linux 开放的所有端口netstat -ntpl,重启服务命令 :service network restart

1 进入到安装的目录里面 whereis nginx

image.png

2. 进入该路径:cd /usr/local/nginx/sbin

3 启动nginx 命令: ./nginx 出现下面启动成功

image.png

4 查看nginx 的状态 ps -ef | grep nginx 出现master 则启动成功

image.png

5 关闭nginx 命令 kill -9 8725(进程号 上面的) 则关闭nginx

6. 停止 nginx 命令: ./nginx -s stop

7.重启nginx命令:./nginx -s reload

http://t.zoukankan.com/aimei-p-12859102.html

请注意关闭防火墙才能访问

https://blog.csdn.net/u013603364/article/details/95992487

关闭防火墙:
1、查看状态:systemctl status firewalld


image.png

2、关闭: systemctl stop firewalld(只执行这个,重启后不行,还必须执行systemclt disable firewalld)


image.png

1.1、查看selinux状态:getenforce

2.2、关闭:编辑文件 /etc/selinux/config,将selinux的值改成disable,然后重启生效(reboot)

3.1、查看iptables状态:systemctl status iptables

3.2、centos7 默认是使用firewalld作为防火墙,iptables是关闭状态,,若执行chkconfig iptables off命令(永久关闭)


启动了NGINX,关闭了防火墙,然后在浏览器中输入IP才能访问页面

相关文章

网友评论

      本文标题:2022-05-19 Linux下启动和关闭nginx命令,

      本文链接:https://www.haomeiwen.com/subject/jzptprtx.html