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

php编译安装

时间:2017-12-15 15:42:01      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:efi   zip   iconv   编译安装   pen   libc   错误   div   salt   

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编译安装

标签:efi   zip   iconv   编译安装   pen   libc   错误   div   salt   

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

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