netstat/ps用法

1、netstat 语法
    命令1:netstat -antp | grep :80(查看80端口被哪个服务占用)or netstat -antpuel  | grep ":22" | grep  -v grep(过虑grep本身)
    netstat/ps用法
 
    命令2:netstat -antp | grep :(查看所有端口占用情况)
    netstat/ps用法
 
2、ps 语法
    命令1:ps aux | grep nginx(查看nginx进程运行状态)or ps aux | grep :80 | grep -v grep(过虑grep本身)
    netstat/ps用法
 
    杀掉进程命令:
    a)相关nginx进行全部杀掉:killall -9 nginx  
    b)把PID两个进程杀掉:kill -9 pid1 and kill -9 pid1 
netstat/ps用法

netstat/ps用法

 
上一篇:Windows 的 AD 域寄生于 Linux 机器


下一篇:webapp启动流程