本文共 1554 字,大约阅读时间需要 5 分钟。
按负载排名查看进程。
安装: yum install iotop安装:
yum search iftopyum install ...netstat -anp | grep 端口号 #查看端口占用
nethogsnethogs -d 5 #5秒刷新nethogs eth0 eth1 #指定网卡
安装: yum install nethogs -y
$ nload$ nload eth0$ nload em0 em2$ nload -t 500 #500毫秒刷新一次
安装:
wget rpm -ivh epel-release-6-8.noarch.rpm yum install nloadlsof
备注: 如果不加任何参数,就会打开所有被打开的文件,建议加上一下参数来具体定位
安装:yum install lsof
lsof /filepath/file
lsof +D /filepath/filepath2/
备注: 使用了+D,对应目录下的所有子目录和文件都会被列出
lsof | grep ‘/filepath/filepath2/’
lsof -u username
备注: -u 选项,u其实是user的缩写
lsof -c mysql
备注: -c 选项将会列出所有以mysql开头的程序的文件,其实你也可以写成lsof | grep mysql,但是第一种方法明显比第二种方法要少打几个字符了
lsof -c mysql -c apache
lsof -u test -c mysql
lsof -u ^root
备注:^这个符号在用户名之前,将会把是root用户打开的进程不让显示
lsof -p 1
lsof -p 123,456,789
lsof -p ^1
lsof -i
lsof -i tcp
lsof -i udp
lsof -i :3306
lsof -i udp:55
特定的tcp端口
lsof -i tcp:80
lsof -a -u test -i
lsof -N
lsof -u
lsof -g 5555
lsof -d description(like 2)
lsof -d 2-3
//1秒钟查看一次
watch -d -n 1 ...如:watch -d -n 1 cat /var/log/messages转载于:https://blog.51cto.com/livestreaming/2314901