server3.example.com 172.25.85.3
1.server3:
tar jxf php-5.6.19.tar.bz2
yum install curl-devel -y
yum install re2c-0.13.5-1.el6.x86_64.rpm gmp-devel net-snmp-devel
gd-devel-2.0.35-11.el6.x86_64.rpm libxml2-devel -y
cd /root/php-5.6.19
./configure --prefix=/usr/local/lnmp/php
--with-config-file-path=/usr/local/lnmp/php/etc --with-mysql=mysqld --with-mysqli=mysqld
--with-pdo-mysql=mysqld --with-openssl --with-snmp --with-gd --with-zlib
--with-curl ##文本浏览
--with-libxml-dir --with-png-dir --with-jpeg-dir --with-freetype-dir --without-pear ##不联网安装
--with-gettext --with-gmp --enable-inline-optimization
--enable-soap ##支持动态加载模块
-enable-ftp --enable-sockets --enable-mbstring --enable-fpm
--with-fpm-user=nginx --with-fpm-group=nginx
make
make install
cp php.ini-production /usr/local/lnmp/php/etc/php-ini
vim .bash_profile
1 2 |
|
source .bash_profile
cd /usr/local/lnmp/php/etc
cp php-fpm.conf.default php-fpm.conf
vim php.ini
1 2 3 4 |
|
/etc/init.d/mysqld start
ll /usr/local/lnmp/mysql/data/mtsql.sock
chmod 755 /usr/local/lnmp/mysql/data
vim php-fpm.conf
1 | pid = run /php-fpm .pid |
cd php-5.6.19/sapi/fpm/cp init.d.php-fpm /etc/init.d/fpmchmod +x /etc/init.d/fpm/etc/init.d/fpm startphp -m ##查看php支持插件
1 | vim /usr/local/lnmp/nginx/html/index .php |
1 2 3 |
|
vim
/usr/local/lnmp/nginx/conf/nginx
.conf
1 2 3 4 5 6 7 8 |
|
cd /usr/local/lnmp/nginx/conf/
ls
nginx -t
nginx -s reload
共同学习,写下你的评论
评论加载中...
作者其他优质文章