- Windows
netstat -nao|find "关键字" //端口占用情况
taskkill /pid 19001 /f //kill某进程
taskkill /im tomcat7.exe /f //kill某程序
- CentOS
netstat -ntlp //列出所有端口
top -c //查看进程信息
ps aux|grep <name> //查询某进程信息
pwd //当前文件夹路径
whereis nginx //查nginx位置
ln -s <源路径> <目标路径> //创建软链
find <指定目录> <指定条件> <指定动作> //find找文件命令
find . -name app* //查以app开头的文件
locate /etc/sh //搜索etc目录下以sh开头的文件,locate是在数据库检索,linux每日更新,对于最新文件的检索需要执行updatedb
whereis <name> //按名称搜索程序
which <name> //在PATH变量中,检索指定系统命令
- supervisor
supervisorctl reload //修改配置文件后必须执行
supervisorctl restart <application name> //重启指定应用
supervisorctl stop <application name> //停止指定应用
supervisorctl start <application name> //启动指定应用
supervisorctl restart all //重启所有应用
supervisorctl stop all //停止所有应用
supervisorctl start all //启动所有应用
- nginx
cd /usr/local/nginx/sbin/
./nginx
./nginx -s stop
./nginx -s quit
./nginx -s reload
- 防火墙
systemctl status firewalld //查看防火墙服务状态
systemctl start/reload/stop firewalld //启动/重启/停止防火墙
firewall-cmd --state //查看防火墙状态
firewall-cmd --reload //重新加载配置
firewall-cmd --list-all //查看规则
firewall-cmd --query-port=80/tcp //查询端口是否开放
firewall-cmd --permanent --add-port=80/tcp //开放80端口
firewall-cmd --permanent --remove-port=8080/tcp //移除端口
标签:--,supervisorctl,cmd,汇总,nginx,端口,常用命令,firewall
From: https://www.cnblogs.com/yingcheng/p/15763245.html