栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > PHP

php7在centos上源码安装

PHP 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

php7在centos上源码安装

一 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版本冲突,所以起个其他端口)



转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/229459.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号