发布时间:2015-08-25 23:19:19
1.获得访问前10位的ip地址<br /><br />cat access.log|awk ‘{print $1}’|sort|uniq -c|sort -nr|head -10<br />cat access.log|awk ‘{counts[$(11)]+=1}; END {for(url in counts) print counts[url], url}’<br /><br /><br />2.访问次数最多的文件或页面,取前20<br /><br /><br />cat access.log|awk ‘{prin.........【阅读全文】
发布时间:2015-08-24 23:34:03
一些重要参数:
innodb_buffer_pool_size #用来高速缓冲数据和索引内存缓冲大小,缓存innodb表的索引
innodb_additional_mem_pool #用来存放Innodb的内部目录数
innodb_log_file_size =1024M #日志值的大小
......【阅读全文】
发布时间:2015-08-23 23:51:01
监控端口:<br />[root@super63 ~]# lsof -i :80<br />COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME<br />httpd 9308 root 4u IPv6 46922 0t0 TCP *:http (LISTEN)<br />httpd &nbs.........【阅读全文】