首先我們來看有關於 MPM 的一些資料:
http://dz.adj.idv.tw/archiver/tid-214.html
在 MPM中, prefork 及 worker 是兩種不同的 multi-processing module, 在 apache 管方網站上分別有對這兩個 module 有深入的介紹:
http://httpd.apache.org/docs/2.0/mod/prefork.html
http://httpd.apache.org/docs/2.0/mod/worker.html 继续阅读Apache的PreFork MPM功能
Tuning the Apache Prefork MPM
Apache uses a set of values called the Prefork MPM to determine how many servers it will utilize and how many threads each server can process. Out of the box all Apache installations use the same values regardless of whether your server has 512Mb of RAM or 8Gb of RAM. It is important that as the server administrator you configure these values to work with your server load.
The Apache Prefork MPM can be found in the Apache configuration file; usually /etc/httpd/conf/httpd.conf. The default values are…
StartServers 2
MinSpareServers 3
MaxSpareServers 3
ServerLimit 75
MaxClients 75
MaxRequestsPerChild 1000
Each Directive taken from “http://httpd.apache.org/docs/trunk/mod/mpm_common.html” is detailed below. 继续阅读Tuning the Apache Prefork MPM
济南游记-两个老爷们儿的2/14-之三 趵突泉
1. 在我一天的匆匆印象之中,济南很强调他的历史。所着重的,又集中在这么三个方面。老城地图,本省词人,日军侵华。经常能在不同的地方看到这几个主题。 继续阅读济南游记-两个老爷们儿的2/14-之三 趵突泉
几篇老舍散文,关于济南的
三篇文章:趵突泉的欣赏,大明湖之春,济南的冬天。还记得趵突泉那课文吗?写的一片太平盛世,现在来看看没被和谐之前的原文说的是什么意思吧。另外还找到了被凌迟的课文若干。 继续阅读几篇老舍散文,关于济南的
济南游记-两个老爷们儿的2/14-之二
1. 系列第二集,从老城小街到芙蓉街 继续阅读济南游记-两个老爷们儿的2/14-之二
linux: vmstat – Report virtual memory statistics
vmstat – Report virtual memory statistics
vmstat 5 5
r–>;在运行队列中等待的进程数
b–>;在等待io的进程数
w–>;可以进入运行队列但被替换的进程
memoy
swap–>;现时可用的交换内存(k表示)
free–>;空闲的内存(k表示)
pages
re--》回收的页面
mf--》非严重错误的页面
pi--》进入页面数(k表示)
po--》出页面数(k表示)
fr--》空余的页面数(k表示)
de--》提前读入的页面中的未命中数
sr--》通过时钟算法扫描的页面
disk 显示每秒的磁盘操作。 s表示scsi盘,0表示盘号
fault 显示每秒的中断数
in--》设备中断
sy--》系统中断
cy--》cpu交换
cpu 表示cpu的使用状态
cs--》用户进程使用的时间
sy--》系统进程使用的时间
id--》cpu空闲的时间
如果 r经常大于 4 ,且id经常少于40,表示cpu的负荷很重。
如果pi,po 长期不等于0,表示内存不足。
如果disk 经常不等于0, 且在 b中的队列 大于3, 表示 io性能不好。