标签:端口

给力的运维shell命令

蓝鹰 | CentOS | 2013-05-21
1.显示消耗内存/CPU最多的10个进程 ps aux | sort -nk +4 | tail -10 ps aux | sort -nk +3 | tail -10 2.查看Apache的并发请求数及其TCP连接状态 netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' 3.找出自己最常用的10条命令及使用次数(或求访问最多的ip数) sed -e 's/| //n/g' ~/.bash_history |cut -d '' -f 1 | sort | un... [阅读全文]
ė105 浏览数 6给力的运维shell命令已关闭评论 0, , , , , , , ,
Ɣ回顶部