简介
prefork是一个多路处理模块(MPM),实现了一个进程型的、预派生的web服务器,适合于没有线程安全库、需要避免线程兼容性问题的系统,在要求每个请求相互独立的情况下具有很好的特性,若一个请求出现问题不会影响到其他请求,同时具有很强的自我调节能力,只需要很少的配置指令进行调整就可以适合于企业应用要求,最重要的是将限定同一时间客户端最大接入请求的数量(MaxClients)设置为一个足够大的数值以处理潜在的请求高峰,同时又不能太大,以避免所需的内存超出物理内存的大小。
工作方式
一个单独的控制进程(父进程)负责产生子进程,子进程用于监听请求并作出应答,因此在内存中会一直存在一些备用的spare或是空闲的子进程用于响应新的请求,可加快响应速度(所谓的预派发是指客户在没有使用之前,先对其分配,比如10几个留作空闲备用)并且父进程通常以root身份运行,以便绑定80端口,子进程通常以一个低特权的用户运行,可通过配置项的User和Group配置
实验环境
- 系统环境:centos6.5
- 服务器IP地址:192.168.100.103
- yum挂载目录:/mnt/sr0
- 相关源码包下载地址:百度云下载 ??密码:pko3
搭建步骤
一、准备工作
1、关闭防火墙及selinux
[[email protected] ~]# chkconfig iptables off #随开机关闭iptables
[[email protected] ~]# vim /etc/sysconfig/selinux
[[email protected] ~]# reboot #重启生效
2、卸载以RPM方式安装httpd相关包
[[email protected] ~]# rpm -qa | grep "httpd"
[[email protected] ~]# yum remove httpd #卸载httpd相关包
3、搭建DNS服务器
如果没有搭建以上两个服务的朋友,请查看我的其他帖子有详细介绍
http://blog.51cto.com/11905606/2156944
二、搭建httpd服务
1、安装gcc、gcc-c++、make、arp、arp-util、pcre等工具包
[[email protected] ~]# yum -y install gcc gcc-c++ make zlib-devel #安装C语言编译器以及make
[[email protected] ~]# tar -zxvf apr-1.4.6.tar.gz -C /usr/src/
[[email protected] ~]# cd /usr/src/apr-1.4.6/
[[email protected] apr-1.4.6]# ./configure prefix=/usr/local/apr && make && make install
[[email protected] ~]# tar -zxvf apr-util-1.4.1.tar.gz -C /usr/src/
[[email protected] ~]# cd /usr/src/apr-util-1.4.1/
[[email protected] apr-util-1.4.1]# ./configure prefix=/usr/local/apr-util --with-apr=/usr/local/apr && make && make install
[[email protected] ~]# tar -zxvf pcre-8.10.tar.gz -C /usr/src #支持正则
[[email protected] ~]# cd /usr/src/pcre-8.10/
[[email protected] pcre-8.10]# ./configure prefix=/usr/local/pcre && make && make install
2、配置编译安装apache
[[email protected] ~]# tar zxvf httpd-2.4.2.tar.gz -C /usr/src/
[[email protected] ~]# cd /usr/src/httpd-2.4.2/
[[email protected] httpd-2.4.2]# ./configure \
--prefix=/usr/local/httpd \
--with-apr=/usr/local/apr \
--with-pcre=/usr/local/pcre \
--enable-expires \
--with-mpm=prefork \
--enable-rewrite \
--enable-charset-lite \
--enable-cgi
参数解析:
prefix:指定安装目录
enable-expire:启用mod_expires模块(网页缓存)
with-mpm=prefork:指定prefork工作模式
enable-so:启用动态加载模块支持,需要什么功能可以动态加载
enable-rewrite:启用网页地址重写功能,实现伪静态
enable-charset-lite:默认字符集
enable-cgid:启用CGID
[[email protected] httpd-2.4.2]# make && make install #编译及编译安装
3、添加系统服务
[[email protected] ~]# cp /usr/local/httpd/bin/apachectl /etc/init.d/httpd
[[email protected] ~]# vim /etc/init.d/httpd
第2、3两行添加以下参数:
# chkconfig:2345 85 15
# description:Apache is a World Wide Web server.
[[email protected] init.d]# chmod +x /etc/init.d/httpd
[[email protected] init.d]# chkconfig --add httpd
4、建立软链接,方便管理
[[email protected] ~]# mkdir -p /etc/httpd
[[email protected] ~]# ln -s /usr/local/httpd/conf/ /etc/httpd/ #优化配置文件路径
[[email protected] ~]# ln -s /usr/local/httpd/bin/* /usr/local/bin/ #优化命令路径
5、修改配置文件
[[email protected] ~]# vim /etc/httpd/conf/httpd.conf
修改以下参数:
ServerName www.bt.com:80 #填写完全主机名
Listen 192.168.100.103:80 #监听本地IP
6、启动httpd服务
[[email protected] ~]# service httpd start
[[email protected] ~]# netstat -anpt | grep ‘:80‘
7、编辑默认首页
[[email protected] ~]# cp qingzi.jpg /usr/local/httpd/htdocs/ #将图片拷贝到站点目录下
[[email protected] ~]# cd /usr/local/httpd/htdocs/ #进入站点目录
[[email protected] htdocs]# vim index.html
<html>
??<body>
????<h1>It works!</h1>
????<img src=‘qingzi.jpg‘ /> #首页添加图片
??</body>
</html>
8、测试首页
三、配置prefork工作模式
1、查看工作模式
[[email protected] ~]# httpd -l
2、查看进程数
[[email protected] ~]# lsof -i :80
lsof是一个列出当前系统打开文件的工具,可显示系统打开的文件,因为lsof需要访问核心内存和各种文件。
-i:列出端口或者协议的连接信息
3、使用ab工具进行压力测试
[[email protected] ~]# ab -n2000 -c1000 www.bt.com/index.html
4、编辑主配置文件
[[email protected] ~]# vim /etc/httpd/conf/httpd.conf
5、编辑MPM配置文件
[[email protected] ~]# vim /etc/httpd/conf/extra/httpd-mpm.conf
[[email protected] htdocs]# /etc/init.d/httpd restart #重启服务
6、再次使用ab压力工具进行测试
[[email protected] ~]# ab -n2000 -c1000 www.bt.com/index.html
[[email protected] ~]# lsof -i :80 | grep -E -v "COMMAND|root" | wc -l
原文地址:http://blog.51cto.com/11905606/2160438