首先创建一个名为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编译参数的配置
准备工作做好后,就开始正式配置PHP7的安装明细了。注意,操作时一定要先把下面反斜杠“\”后面添加的注释文字去掉!!!
######开始
生成配置文件
[root@typecodes
PHP-src-master]# ./buildconf
buildconf: checking installation...
buildconf: autoconf version 2.69 (ok)
rebuilding aclocal.m4
rebuilding configure
rebuilding 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
执行上面的配置命令的结果如下图所示:
3 开始编译和安装PHP7
相对编译安装MysqL的大量cpu和内存消耗,PHP7的编译安装轻松多了,整个过程大约1个小时左右。
[root@typecodes
PHP-src-master]# make clean && make && make install
看到下图就代表已经编译安装好了PHP7!
4 选做步骤:执行make test命令进行测试
这是一个非必需的操作步骤,执行make test
命令。
有趣的一件事就是:在test期间,会和一个IP地址72.52.91.14建立tcp连接,它对应着PHP官网http://www.PHP.net。
执行完make test
命令后,最终的结果如下:
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
将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 start
Starting
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
编译参数设定,安装后的PHP7配置文件所在路径是/usr/local/PHP7/etc
。该目录下会有两个配置文件:PHP-fpm.conf
和PHP.ini
,以及一个文件夹PHP-fpm.d
(包含www.conf
文件)。
因此,这篇文章主要对这三个PHP配置文件的进行简单说明,具体的配置过程见本文末尾的附录
部分。
1 配置PHP.ini
PHP.ini是PHP运行核心配置文件:
expose_PHP = Off
display_errors = Off
log_errors = On
extension_dir = "/usr/local/PHP7/lib/PHP/extensions/no-debug-non-zts-20141001/"
zend_extension=opcache.so
extension=MysqLi.so
extension=pdo_MysqL.so
date.timezone = PRC
[opcache]
; Determines if Zend OPCache is enabled
opcache.enable=1
;open_basedir = /usr/share/Nginx/html;
2 配置PHP-fpm.conf
PHP-fpm.conf是PHP-fpm
进程服务的配置文件:
######设置错误日志的路径
error_log = /var/log/PHP-fpm/error.log
include=/usr/local/PHP7/etc/PHP-fpm.d/*.conf
3 配置www.conf(在PHP-fpm.d目录下)
www.conf这是PHP-fpm
进程服务的扩展配置文件:
######设置用户和用户组
user = Nginx
group = Nginx
; listen = 127.0.0.1:9000
listen = /var/run/PHP-fpm/PHP-fpm.sock
slowlog = /PHP-fpm/$pool-slow.log
request_slowlog_timeout = 10s
PHP_value[session.save_handler] = files
PHP_value[session.save_path] = /var/lib/PHP/session
4 附录
在前文已经说明了,目前已经把这个关于Nginx、MysqL和PHP配置的全部托管在GitHub和coding.net上,地址如下:
GitHub地址:https://github.com/vfhky/mylnmp;
Coding地址:https://coding.net/u/vfhky/p/mylnmp/git。
文章来源:http://www.tuicool.com/articles/NjmQNj6
原文链接:https://www.f2er.com/centos/379388.html