默认为prefork模式,主要是考虑到稳定性的原因。
要切换到worker模式,则需要登录到linux上,进行如下操作:
进入/usr/sbin目录
cd/usr/sbin
将当前的prefork模式启动文件改名
mvhttpdhttpd.prefork
将worker模式的启动文件改名
mvhttpd.workerhttpd
修改配置文件vi/etc/httpd/conf/httpd.conf
找到里边的如下一段,可适当修改负载等参数:
StartServers2
MaxClients150
MinSpareThreads25
MaxSpareThreads75
ThreadsPerChild25
MaxRequestsPerChild0
重新启动服务
/etc/init.d/httpdrestart
即可换成worker方式启动apache2
注意这里可能会遇到错误:
ApacheisrunningathreadedMPM,butyourPHPModuleisnotcompiledtobethreadsafe.YouneedtorecompilePHP.Pre-configurationfailed!
解决方法是将/etc/httpd/conf.d/php.conf文件中的LoadModule开头的那行代码注释掉。
--------------------------
注意:处于稳定性和安全性考虑,不建议更换apache2的运行方式,使用系统默认prefork即可
另外很多php模块不能工作在worker模式下,例如redhatlinux自带的php也不能支持线程安全
所以最好不要切换工作模式。
=========================================
#/etc/init.d/httpdstop
[root@web~]#whichapachectl
/usr/sbin/apachectl
[root@web~]#whichhttpd
/usr/sbin/httpd
[root@web~]#cd/usr/sbin/
[root@web~]#mvhttpdhttpd.prefork
#mvhttpd.workerhttpd
#httpd-kstart