2009年度总结
今年最主要的收获还是关于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
| Print article | This entry was posted by Herbert on 2009/11/27 at 10:43, and is filed under Linux, MyLife. Follow any responses to this post through RSS 2.0. You can leave a response or trackback from your own site. |