Centos6.x下Apache-mysql-php优化
Centos6.x下Apache-mysql-php优化
1.php优化:
视情况而定:
有时需要mysql连接需要随开随关
有时需要保持连接
2.apache:
每个Apache配置对于每个部署都是唯一的。
禁用不必要的PHP扩展和微调内存使用和php.ini文件中的其他设置。
适当工作模式的切换:
三个模式
切换方法:
默认为prefork模式,主要是考虑到稳定性的原因。
要切换到worker模式,则需要登录到linux上,进行如下操作:
cd /usr/sbin mv httpd httpd.prefork mv httpd.worker httpd //修改配置文件vi /etc/httpd/conf/httpd.conf //找到里边的如下一段,可适当修改负载等参数: StartServers 2 MaxClients 150 MinSpareThreads 25 MaxSpareThreads 75 ThreadsPerChild 25 MaxRequestsPerChild 0
重新启动服务
/etc/init.d/httpd restart
即可换成worker方式启动apache2
注意这里可能会遇到错误:
**1.Apache is running a threaded MPM, but your PHP Module is not
compiled to be threadsafe. You need to recompile PHP.
Pre-configuration failed!**
解决方法是将/etc/httpd/conf.d/php.conf文件中的LoadModule开头的那行代码注释掉。
2.can’t load libphp5-zts.so
解决办法:
You need to install php-zts package:
Name : php-zts
Version : 5.3.8
Release : 2.el5.art
Architecture: x86_64
Size : 4210728
Packager : None
Group : Development/Languages
URL : http://www.php.net/
Repository : atomic
Summary : Thread-safe PHP interpreter for use with the Apache HTTP Server
Description :
The php-zts package contains a module for use with the Apache HTTP
Server which can operate under a threaded server processing model.
and make sure that this extension exists in /etc/httpd/modules:
ls -l /etc/httpd/modules/libphp5-zts.so
-rwxr-xr-x 1 root root 4210728 Nov 1 05:29 /etc/httpd/modules/libphp5-zts.so
3.Mysql
1) 最大连接数的设置。
2) 索引的添加。!!! 百万条数据加上索引能够很快查找到想要的数据
alter table test add index(t_name);