编译安装php7
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编译安装php7相关的知识,希望对你有一定的参考价值。
1、首先在官方网站中http://php.net/downloads.php下载自己需要的php的版本,我这里使用的是php 7.1.9
2、安装相应软件(大部分在之前安装ngnix时已完成)
yum -y install curl
yum -y install libxm12*
yum -y install libxslt-devel*
3、将相应的安装包拷贝至相应的目录下
tar -zxvf php-7.1.9.tar.gz cd php-7.1.9
4、编译
在网上找的一个比较详细的编译配置
./configure --prefix=/usr/local/php --with-config-file-path=/etc --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-soap --with-libxml-dir --with-xmlrpc --with-openssl --with-mcrypt --with-mhash --with-pcre-regex --with-sqlite3 --with-zlib --enable-bcmath --with-iconv --with-bz2 --enable-calendar --with-curl --with-cdb --enable-dom --enable-exif --enable-fileinfo --enable-filter --with-pcre-dir --enable-ftp --with-gd --with-openssl-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-freetype-dir --enable-gd-native-ttf --enable-gd-jis-conv --with-gettext --with-gmp --with-mhash --enable-json --enable-mbstring --enable-mbregex --enable-mbregex-backtrack --with-libmbfl --with-onig --enable-pdo --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-zlib-dir --with-pdo-sqlite --with-readline --enable-session --enable-shmop --enable-simplexml --enable-sockets --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-wddx --with-libxml-dir --with-xsl --enable-zip --enable-mysqlnd-compression-support --with-pear --enable-opcache
编译完成会显示Thank you for using php
5、安装
make && make install
6、配置环境变量
vim /etc/profile
在最后添加
PATH=$PATH:/usr/local/php/bin export PATH
执行命令使改动生效
source /etc/profile
7、配置php-fpm
cd /usr/local/php/etc cp php-fpm.conf.default php-fpm.conf
打开php-fpm文件
vim php-fpm.conf
编辑php-fpm文件
找到 ;error_log = log/php-fpm.log ;include=/usr/local/php/etc/php-fpm.d/*.conf 如果有注释,就去掉前面的注释 【;】
cd php-fpm.d cp www.conf.default www.conf
修改www.conf文件
vim www.conf
将配置文件中的user和group改为www
user = www group = www
启动php-fpm
/usr/local/php/sbin/php-fpm
以上是关于编译安装php7的主要内容,如果未能解决你的问题,请参考以下文章