1. 程式人生 > >linux檢視程序和埠號

linux檢視程序和埠號

  1. linux檢視是否有某個執行的程序命令
  2. linux檢視是否有某個執行的程序命令:例如,查詢是否包含 “my_post” 關鍵字的程序
ps aux | grep my_post

ps aux | grep  my_post | grep -v grep

參考http://www.cnblogs.com/zdz8207/

注:grep -v grep 是不顯示grep查詢這個程序

1、使用ls of

lsof -i:埠號檢視某個埠是否被佔用
lsof -i:80

2、使用netstat

netstat -anp | grep 80 

3、netstat常用命令

netstat -ntlp   //檢視當前所有tcp埠·
netstat -ntulp |grep 80   //檢視所有80埠使用情況·
netstat -an | grep 3306   //檢視所有3306埠使用情況·