linux nginx常用命令总结
一.查找命令
1. find(指定目录查找)
2. locate(数据库中查找)
3. whereis(程序名查找)
4. which(环境变量中查找)
5. type
二.防火墙
1、开放端口
firewall-cmd --zone=public --add-port=5672/tcp --permanent # 开放5672端口
firewall-cmd --zone=public --remove-port=5672/tcp --permanent #关闭5672端口
firewall-cmd --reload # 配置立即生效
2、查看防火墙所有开放的端口
firewall-cmd --zone=public --list-ports
3.、关闭防火墙
如果要开放的端口太多,嫌麻烦,可以关闭防火墙,安全性自行评估
systemctl stop firewalld.service
4、查看防火墙状态
firewall-cmd --state
三、查看监听的端口
netstat -lnpt
PS:centos7默认没有 netstat 命令,需要安装 net-tools 工具,yum install -y net-tools
四、检查端口被哪个进程占用
netstat -lnpt |grep 5672
五、查看进程的详细信息
ps 6832
六、中止进程
kill -9 6832
七.nginx命令
1.nginx启动,停止,状态
systemctl start nginx.service
systemctl stop nginx.service
systemctl reload nginx.service
systemctl status nginx.service
2.找到nginx的安装位置
whereis nginx
上一篇: PHP语言、浏览器、操作系统、IP、地理位置、ISP
下一篇: Linux常用命令