重启PHP-FPM
service php-fpm restart
./configure --prefix=/root/tools/php --with-config-file-path=/root/tools/php/etc --enable-fpm
--with-pdo-mysql=/root/tools/php/include/php/ext/mysqlnd --with-mysql=/usr/local/ --with-mysqli=/usr/lib64/mysql/mysql_config
make
make install
cp /root/tools/php-5.6.11/php.ini-development /root/tools/php/etc/php.ini cp /root/tools/php/etc/php-fpm.conf.default /root/tools/php/etc/php-fpm.conf
php配置
cgi.fix_pathinfo=1
检验配置是否正确的方法为:
/usr/local/php/sbin/php-fpm -t
如果出现诸如 “test is successful” 字样,说明配置没有问题。
启动php-fpm
cp /root/tools/php-5.6.11/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm chmod 755 /etc/init.d/php-fpm service php-fpm start
如果想让它开机启动,执行:
chkconfig php-fpm on
检测是否启动:
ps aux |grep php-fpm
netstat -ant |grep 9000
看看是不是有很多个进程(大概20多个)还有你的9000端口开启了么?。
http://blog.csdn.net/dyllove98/article/details/41120789
nginx配置
user root
迁移
scp -r
/var/www/html
root@192.168.2.11:/var/www/
bugfree.sql
192.168.2.20全部替换为192.168.2.11
安装mysqli:
利用phpize命令生成configure文件。
1: 用find命令,查找一下mysqli的文件目录,find / -name "mysqli"
2: cd 到mysqli文件目录下,执行 /root/tools/php/bin/phpize
3: ./configure --with-php-config=/root/tools/php/bin/php-config --with-mysqli= /usr/lib64/mysql/mysql_config
4: make
5: make test
6: make install
修改php.ini
加入或者去掉注释 extension = "mysqli.so" (如果extension_dir 不对,此处需要写全路径)
1: 用find命令,查找一下mysqli的文件目录,find / -name "mysqli"
2: cd 到mysqli文件目录下,执行 /root/tools/php/bin/phpize
3: ./configure --with-php-config=/root/tools/php/bin/php-config --with-mysqli= /usr/lib64/mysql/mysql_config
4: make
5: make test
6: make install
修改php.ini
加入或者去掉注释 extension = "mysqli.so" (如果extension_dir 不对,此处需要写全路径)
安装pdo:
利用phpize命令生成configure文件。
1: 用find命令,查找一下mysqli的文件目录,find / -name "mysqli"
2: cd 到mysqli文件目录下,执行 /root/tools/php/bin/phpize
3: ./configure --with-php-config=/root/tools/php/bin/php-config
4: make
5: make test
6: make install
修改php.ini
加入或者去掉注释 extension = "mysqli.so" (如果extension_dir 不对,此处需要写全路径)
1: 用find命令,查找一下mysqli的文件目录,find / -name "mysqli"
2: cd 到mysqli文件目录下,执行 /root/tools/php/bin/phpize
3: ./configure --with-php-config=/root/tools/php/bin/php-config
4: make
5: make test
6: make install
修改php.ini
加入或者去掉注释 extension = "mysqli.so" (如果extension_dir 不对,此处需要写全路径)