Centos 7 编译php 7.2.10
Posted iove
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos 7 编译php 7.2.10相关的知识,希望对你有一定的参考价值。
步骤一:安装依赖
yum install -y wget gcc gcc-c++ gd-devel zlib-devel libjpeg-devel libpng-devel libiconv-devel freetype-devel libxml2 libxml2-devel openssl openssl-devel curl-devel libxslt-devel libmcrypt-devel mhash mcrypt
步骤二:下载php安装包
wget http://101.247.192.75/files/50030000062C2C69/cn2.php.net/distributions/php-7.2.10.tar.gz
步骤三:编译源代码
tar xvf php* cd php* ./configure --with-openssl --with-pcre-regex --with-kerberos --with-libdir=lib --with-libxml-dir --with-mysqli=shared,mysqlnd --with-pdo-mysql=shared,mysqlnd --with-pdo-sqlite --with-gd --with-iconv --with-zlib --with-xmlrpc --with-xsl --with-pear --with-gettext --with-curl --with-png-dir --with-jpeg-dir --with-freetype-dir --with-fpm-user=nginx --with-fpm-group=nginx --enable-mysqlnd --enable-zip --enable-inline-optimization --enable-shared --enable-libxml --enable-xml --enable-bcmath --enable-shmop --enable-sysvsem --enable-mbregex --enable-mbstring --enable-ftp --enable-pcntl --enable-sockets --enable-soap --enable-session --enable-opcache --enable-fpm --enable-maintainer-zts --enable-fileinfo --with-mysqli=/usr/local/mysql make make install
步骤四:复制文件
cp php.ini-development /usr/local/lib/php.ini cp /usr/local/etc/php-fpm.conf.default /usr/local/etc/php-fpm.conf cp sapi/fpm/php-fpm /usr/local/bin cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
步骤五:启动php-fpm
service php-fpm start
chkconfig --add php-fpm
以上是关于Centos 7 编译php 7.2.10的主要内容,如果未能解决你的问题,请参考以下文章
基于CentOS 6.8平台最新源代码包编译安装LNMP环境搭建(Nginx+MySQL+PHP)
centos7编译php出现问题 系统:CENTOS7 64位 PHP版本:7.1.0 APACHE版本:2.4.25 MYSQL版