Posts tagged Summary
2009年度总结
Nov 27th
今年最主要的收获还是关于Linux系统方面的知识。
统计Apache的访问UV
cat /home/app/httpd/logs/access_log|grep 04/Nov/2009 | awk '{print $1}' | sort | uniq -c | sort -rn | wc -l
系统实时并发
tail -10000 /home/app/httpd/logs/access_log | awk '{print $5}' | sort | uniq -c | sort -rn | head
系统连接状态统计
netstat -an | awk '{print $6}' | sort |uniq -c| sort -rn