首页 > Web开发 > 详细

php编译安装

时间:2017-12-15 15:29:35      阅读:198      评论:0      收藏:0      [点我收藏+]

Centos6 环境:

yum install libxml2-devel curl-devel libpng-devel freetype-devel -y

./configure --prefix=/usr/local/php-7.x.x \
--with-mysqli=mysqlnd \
--with-jpeg-dir \
--with-png-dir \
--with-iconv-dir \
--with-freetype-dir \
--with-zlib \
--with-mhash \
--with-libxml-dir \
--with-curl \
--with-mcrypt \
--with-gd \
--with-openssl \
--enable-ftp \
--enable-xml \
--enable-sockets \
--enable-bcmath \
--enable-inline-optimization \
--enable-gd-native-ttf \
--enable-mbregex \
--enable-mbstring \
--enable-pcntl \
--enable-sockets \
--enable-fpm \
--enable-soap \
--enable-zip \
--enable-opcache

make -j24
make install

安装相关扩展:

第一种是使用pecl:

pecl install swoole
pecl install redis 

 

第二种是下载扩展源码安装:

#swoole编译,添加--enable-coroutine编译参数启用协程能力
git clone https://github.com/swoole/swoole-src.git
cd swoole-src/
phpize
./configure --with-php-config=/usr/local/php/bin/php-config --enable-coroutine
make && make install

 


相关错误记录:
configure: error: xml2-config not found. Please check your libxml2 installation.
=>yum install libxml2-devel -y

configure: error: Please reinstall the libcurl distribution -
=>yum -y install curl-devel

checking for jpeg_read_header in -ljpeg... yes
configure: error: png.h not found.
=>yum install libpng-devel -y


If configure fails try --with-xpm-dir=<DIR>
configure: error: freetype-config not found.
=>yum install freetype-devel -y

yum install libxml2-devel curl-devel libpng-devel freetype-devel -y

 

 

像这种安装部署的事情可以用Ansible或SaltStack固化下来,形成统一标准化配置。

 

php编译安装

原文:http://www.cnblogs.com/helloworld899/p/8043244.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!