2018-5-25

11.10/11.11/11.12 安装PHP5

11.13 安装PHP7





11.10/11.11/11.12 安装PHP5


PHP官网www.php.net

下载5.6安装包wget http://cn2.php.net/distributions/php-5.6.30.tar.gz

解压 tar -zxvf  php-5.6.30.tar.gz

编译:

 ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php/etc  --with-mysql=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif

几个参数,一个指定apache,一个指定mysql,后面的是一些模块。

image.png

编译过程中报错:

image.png

需要安装xml2

yum install -y libxml2-devel

继续上面的操作

报错:image.png

解放方案:yum install -y openssl-devel 

报错:image.png

解决方案:yum install -y bzip2-devel


报错:image.png

解决方案:yum install -y libjpeg-devel

报错:image.png

解决方案:yum install -y libpng-devel

报错:image.png

解决方案:yum install -y freetype-devel

报错:image.png

解决方案:yum install -y libmcrypt-devel

image.png

成功


make 

image.png

make install

image.png


php的目录

image.png

核心的二进制文件在bin下

查看php加载的模块 /usr/local/php/bin/php -m

image.png

这些模块都是静态的


把参考配置文件放到etc下(configure里有定义)

cp php.ini-production  /usr/local/php/etc/php.ini



11.13 安装PHP7

与php5基本相同

过程:

wget http://cn2.php.net/distributions/php-7.1.6.tar.bz2

tar -jxf php-7.1.6.tar.bz2

cd php-7.1.6

 ./configure --prefix=/usr/local/php7 --with-apxs2=/usr/local/apache2.4/bin/apxs --with-config-file-path=/usr/local/php7/etc  --with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-iconv-dir --with-zlib-dir --with-bz2 --with-openssl --with-mcrypt --enable-soap --enable-gd-native-ttf --enable-mbstring --enable-sockets --enable-exif(和php5企业别是 prefix是php7 ,其他几乎相同)

make && make install


image.png

 一个机器可以安装两个php,但apache调用php时需要指定好。用哪一个根据需求更改配置文件



猜你喜欢

转载自blog.51cto.com/13646170/2122654
今日推荐