码迷,mamicode.com
首页 > Web开发 > 详细

编译安装php7

时间:2017-09-22 19:11:34      阅读:268      评论:0      收藏:0      [点我收藏+]

标签:bug   error   配置   share   sock   inline   nat   efault   shmop   

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

标签:bug   error   配置   share   sock   inline   nat   efault   shmop   

原文地址:http://www.cnblogs.com/yqy38/p/7576201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!