ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
## yum 安装 ``` yum install -y httpd ``` 其他模块按需安装 ![](http://i1.piimg.com/567571/c1060af329af3458.png) --- ### 更改MPM 修改httpd服务脚本的配置文件改变MPM,并在httpd的主配置文件中加载指定的MPM模块 ~~~ vim /etc/sysconfig/httpd # Configuration file for the httpd service. # # The default processing model (MPM) is the process-based # 'prefork' model. A thread-based model, 'worker', is also # available, but does not work with some modules (such as PHP). # The service must be stopped before changing this variable. # #HTTPD=/usr/sbin/httpd.worker ~~~