①、服务器nginx 、php 、mysql都是安装好的,于是想直接升级php7.
②按照文章:https://typecodes.com/web/centos7compilephp7.html?utm_source=tuicool&utm_medium=referral 进行操作,中途出现一些不一样的地方。
③问题解决参考:http://blog.chinaunix.net/uid-25266990-id-2915395.html
分割线------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
下面会将步骤2,自己使用的重新贴出来。
1 创建php用户和用户组,并在github下载php7源码首先创建一个名为php且没有登录权限的用户和一个名为php的用户组,然后去github下载php7源码包。
#######新建php用户和php组[root@typecodes ~]# groupadd -r php && useradd -r -g php -s /bin/false -d /usr/local/php7 -m php######从github下载php7安装包[root@typecodes ~]# wget -c --no-check-certificate -o php7-src-master.zip https://github.com/php/php-src/archive/master.zip######开始解压php7包[root@typecodes ~]# unzip -q php7-src-master.zip && cd php-src-master#####安装编译php7时需要的依赖包[root@typecodes php-src-master]# yum -y install libxml2 libxml2-devel openssl openssl-devel curl-devel libjpeg-devel libpng-devel freetype-devel libmcrypt-devel
2 php7编译参数的配置(ps:下面我会贴出去掉斜杠的,可以直接复制)准备工作做好后,就开始正式配置php7的安装明细了。注意,操作时一定要先把下面反斜杠“\”后面添加的注释文字去掉!!!
######开始生成配置文件[root@typecodes php-src-master]# ./buildconfbuildconf: checking installation...buildconf: autoconf version 2.69 (ok)rebuilding aclocal.m4rebuilding configurerebuilding main/php_config.h.in######开始配置[root@typecodes php-src-master]# ./configure \--prefix=/usr/local/php7 \ [php7安装的根目录]--exec-prefix=/usr/local/php7 \--bindir=/usr/local/php7/bin \--sbindir=/usr/local/php7/sbin \--includedir=/usr/local/php7/include \--libdir=/usr/local/php7/lib/php \--mandir=/usr/local/php7/php/man \--with-config-file-path=/usr/local/php7/etc \ [php7的配置目录]--with-mysql-sock=/var/run/mysql/mysql.sock \ [php7的unix socket通信文件]--with-mcrypt=/usr/include \--with-mhash \--with-openssl \--with-mysql=shared,mysqlnd \ [php7依赖mysql库] --with-mysqli=shared,mysqlnd \ [php7依赖mysql库]--with-pdo-mysql=shared,mysqlnd \ [php7依赖mysql库]--with-gd \--with-iconv \--with-zlib \--enable-zip \--enable-inline-optimization \--disable-debug \--disable-rpath \--enable-shared \--enable-xml \--enable-bcmath \--enable-shmop \--enable-sysvsem \--enable-mbregex \--enable-mbstring \--enable-ftp \--enable-gd-native-ttf \--enable-pcntl \--enable-sockets \--with-xmlrpc \--enable-soap \--without-pear \--with-gettext \--enable-session \ [允许php会话session]--with-curl \ [允许curl扩展]--with-jpeg-dir \--with-freetype-dir \--enable-opcache \ [使用opcache缓存]--enable-fpm \--enable-fastcgi \--with-fpm-user=nginx \ [php-fpm的用户]--with-fpm-group=nginx \ [php-fpm的用户组]--without-gdbm \--disable-fileinfo
./configure--prefix=/usr/local/php7 --exec-prefix=/usr/local/php7--bindir=/usr/local/php7/bin --sbindir=/usr/local/php7/sbin --includedir=/usr/local/php7/include --libdir=/usr/local/php7/lib/php --mandir=/usr/local/php7/php/man --with-config-file-path=/usr/local/php7/etc --with-mysql-sock=/var/run/mysql/mysql.sock --with-mcrypt=/usr/include --with-mhash --with-openssl --with-mysql=shared,mysqlnd --with-mysqli=shared,mysqlnd --with-pdo-mysql=shared,mysqlnd --with-gd --with-iconv --with-zlib --enable-zip --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-mbregex --enable-mbstring --enable-ftp --enable-gd-native-ttf --enable-pcntl --enable-sockets --with-xmlrpc --enable-soap --without-pear --with-gettext --enable-session --with-curl --with-jpeg-dir --with-freetype-dir --enable-opcache --enable-fpm --enable-fastcgi --with-fpm-user=nginx --with-fpm-group=nginx --without-gdbm --disable-fileinfo
3 开始编译和安装php7相对编译安装mysql的大量cpu和内存消耗,php7的编译安装轻松多了,整个过程大约1个小时左右。
[root@typecodes php-src-master]# make clean && make && make install
看到下图就代表已经编译安装好了php7!(ps:编译过程中出现错误。 undefined reference to `libiconv_open 无法编译php;
解决方法详情见上面链接:編輯 makefile 大約 77 行左右的地方:
extra_libs = ..... -lcrypt
在最後加上 -liconv,例如:
extra_libs = ..... -lcrypt -liconv
再运行make就可以了。)
4 选做步骤:执行make test命令进行测试这是一个非必需的操作步骤,执行make test命令。有趣的一件事就是:在test期间,会和一个ip地址72.52.91.14建立tcp连接,它对应着php官网http://www.php.net。
5 查看编译成功后的php7安装目录由于需要和mysql进行通信,所以需要特别查看php7安装后的lib扩展库目录(/usr/local/php7/lib/php/extensions/no-debug-non-zts-20141001/)。需要确保至少存在mysqli.so、pdo_mysql.so这两个动态库文件,如下图所示。
6 开始设置php7的配置文件php.ini、php-fpm.conf、www.conf和php-fpm脚本可以用编译后的配置文件复制到php7的配置目录(/usr/local/php7/etc/),推荐使用《php7中php.ini、php-fpm和www.conf的配置》文中整理的3个php7配置文件和php-fpm服务控制脚本。
#######方法一:直接使用编译后未经优化处理的配置[root@typecodes php-src-master]# cp php.ini-production /usr/local/php7/etc/php.ini[root@typecodes php-src-master]# cp /root/php-src-master/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm[root@typecodes php-src-master]# cp /usr/local/php7/etc/php-fpm.conf.default /usr/local/php7/etc/php-fpm.conf[root@typecodes php-src-master]# cp /usr/local/php7/etc/php-fpm.d/www.conf.default /usr/local/php7/etc/php-fpm.d/www.conf#######方法二:使用https://typecodes.com/web/php7configure.html文中的配置 [root@typecodes php-src-master]# mv ~/php.ini /usr/local/php7/etc/php.ini && mv ~/php-fpm /etc/init.d/php-fpm[root@typecodes php-src-master]# mv ~/php-fpm.conf /usr/local/php7/etc/php-fpm.conf && mv ~/www.conf /usr/local/php7/etc/php-fpm.d/www.conf
7 添加php的环境变量将php编译生成的bin目录添加到当前linux系统的环境变量中
[root@typecodes ~]# echo -e '\nexport path=/usr/local/php7/bin:/usr/local/php7/sbin:$path\n' >> /etc/profile && source /etc/profile
8 设置php日志目录和php-fpm进程文件(php-fpm.sock)目录其中,设置php-fpm进程目录的用户和用户组为nginx,并创建php会话session目录。
#######设置php日志目录和php-fpm的运行进程id文件(php-fpm.sock)目录[root@typecodes ~]# mkdir -p /var/log/php-fpm/ && mkdir -p /var/run/php-fpm && cd /var/run/ && chown -r nginx:nginx php-fpm#######修改session的目录配置[root@typecodes etc]# mkdir -p /var/lib/php/session[root@typecodes etc]# chown -r nginx:nginx /var/lib/php
9 设置php开机启动以及测试配置文件是否正确######配置开机自启动,增加到主机sysv服务[root@typecodes php-src-master]# chmod +x /etc/init.d/php-fpm[root@typecodes php-src-master]# chkconfig --add php-fpm[root@typecodes php-src-master]# chkconfig php-fpm on######测试php的配置文件是否正确合法[root@typecodes sbin]# php-fpm -t[03-may-2015 17:50:04] notice: configuration file /usr/local/php7/etc/php-fpm.conf test is successful
10 启动php服务在完成上面的操作后,就可以正式使用php服务了。启动php进程服务的命令如下:
[root@typecodes sbin]# service php-fpm startstarting php-fpm done
然后可以通过命令ps -aux|grep php查看是否成功(图中的php-fpm进程数和进程用户nginx都是由www.conf中pm.start_servers和user的值分别决定的):
11 查看php7版本信息最后,可以通过命令php -v查看当前php版本信息,图中可以看到当前php7还使用了zend opcache缓存,是因为在php.ini文件中添加了zend_extension=opcache.so配置。
configure: error: xslt-config not found. please reinstall the libxslt >= 1.1.0 distribution
php编译安装
./configure的时候出现如下错误:
configure: error: xslt-config not found. please reinstall the libxslt >= 1.1.0 distribution
解决方法:
yum install libxslt-devel* -y
推荐学习:php视频教程
以上就是nginx服务器如何从php5.5.7升级到php7?的详细内容。
