php7在centos上源码安装

发布时间:2020-06-13 17:46:04 作者:shine_forever
来源:网络 阅读:1201

一 php7.0.6版本下载链接:

wget -c http://cn2.php.net/get/php-7.0.6.tar.gz/from/this/mirror


二 安装基础的依赖软件:

yum install -y gcc gcc-c++  make zlib zlib-devel pcre pcre-devel \

libjpeg libjpeg-devel     libpng libpng-devel freetype freetype-devel \

libxml2 libxml2-devel     glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel \

ncurses ncurses-devel curl curl-devel    e2fsprogs e2fsprogs-devel krb5 \

krb5-devel openssl openssl-devel openldap openldap-devel nss_ldap \

openldap-clients openldap-servers php-mysqlnd libmcrypt-devel \

libtidy libtidy-devel recode recode-devel libxpm-devel


yum install -y autoconf


三 解压php压缩包:

tar zxvf php-7.0.6.tar.gz

编译:

./configure \

    --prefix=/webser/php7 \

    --with-config-file-path=/data/php7/etc \

    --enable-mbstring \

    --enable-zip \

    --enable-bcmath \

    --enable-pcntl \

    --enable-ftp \

    --enable-exif \

    --enable-calendar \

    --enable-sysvmsg \

    --enable-sysvsem \

    --enable-sysvshm \

    --enable-opcache \

    --enable-fpm  \

    --enable-session \

    --enable-sockets \

    --enable-mbregex \

    --with-fpm-user=vagrant  \

    --with-fpm-group=nogroup \

    --enable-wddx \

    --with-curl \

    --with-mcrypt \

    --with-iconv \

    --with-gd \

    --with-jpeg-dir=/usr \

    --with-png-dir=/usr \

    --with-zlib-dir=/usr \

    --with-freetype-dir=/usr \

    --enable-gd-native-ttf \

    --enable-gd-jis-conv \

    --with-openssl \

    --with-pdo-mysql=mysqlnd \

    --with-gettext=/usr \

    --with-zlib=/usr \

    --with-bz2=/usr \

    --with-recode=/usr \

     --with-xmlrpc \

    --with-mysqli=mysqlnd


make -j 4

make test

make install


copy相关文件:

进入php7解压的文件夹

cp -a php.ini-production /webser/php7/php.ini

cp sapi/fpm/init.d.php-fpm /etc/init.d/php7-fpm

chmod +x /etc/init.d/php7-fpm


cd /webser/php7

cp /webser/php7/etc/php-fpm.conf.default /webser/php7/etc/php-fpm.conf

cp /webser/php7/etc/php-fpm.d/www.conf.default //php7/etc/php-fpm.d/

www.conf


修改 www.conf文件:

修改以下字段即可:

user=www

group=www


listen = 127.0.0.1:9007  (默认为9000,以免和系统的php5.3版本冲突,所以起个其他端口)



推荐阅读:
  1. centos7源码安装php7
  2. php7源码安装

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

php centos 源码

上一篇:Axios 是一个基于 promise 的 HTTP 库

下一篇:API的文档自动生成——基于CDIF的SOA基本能力

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》