博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
源码编译安装PHP5、PHP7
阅读量:6412 次
发布时间:2019-06-23

本文共 4768 字,大约阅读时间需要 15 分钟。

hot3.png

11.10-11.12 安装PHP5

PHP(Hypertext Preprocessor)英文超级文本预处理语言。PHP 是一种HTML内嵌式的语言,是一种在服务器端执行的嵌入HTML文档的脚本语言。官网:www.php.net.

准备工作

准备安装包

下载:[root@1 src]# wget http://cn2.php.net/distributions/php-5.6.30.tar.gz  解压:[root@1 src]# tar zxvf php-5.6.30.tar.gz

安装PHP-5

[root@1 src]# cd php-5.6.30/

环境配置

[root@1 php-5.6.30]# ./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#参数解析:--prefix=/usr/local/php 指定安装目录--with-apxs2=/usr/local/apache2.4/bin/apxs 该文件是Apache的一个工具,可以将扩展模块添加到Apache的module文件。--with-config-file-path=/usr/local/php/etc 指定配置文件所在路径--with-mysql=/usr/local/mysql 指定mysql的路径--with-mysqli=/usr/local/mysql/bin/mysql_config--with-pdo-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config 上面两项参数是指定相关mysql库!--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以上参数是指定PHP相关的一些模块(通用)。

报错:

错误1:

configure: error: xml2-config not found. Please check your libxml2 installation.说明:缺少xml2库。

解决办法:

查找相关的库安装包:[root@1 php-5.6.30]# yum list |grep libxml2安装库文件:[root@1 php-5.6.30]# yum install -y libxml2-devel

错误2:

configure: error: Cannot find OpenSSL's 
说明:缺少OpenSSL's。

解决办法:

[root@1 php-5.6.30]# yum install -y openssl-devel

错误3:

configure: error: Please reinstall the BZip2 distribution说明:重新安装BZip2。

解决办法:

[root@1 php-5.6.30]# yum install -y bzip2-devel

错误4:

configure: error: jpeglib.h not found.说明:缺少jpeg库。

解决办法:

[root@1 php-5.6.30]# yum install -y libjpeg-devel

错误5:

configure: error: png.h not found.说明:缺少png库。

解决办法:

[root@1 php-5.6.30]# yum install -y libpng-devel

错误6:

configure: error: freetype-config not found.说明:缺少freetype库。

解决办法:

[root@1 php-5.6.30]# yum install -y freetype-devel

错误7:

configure: error: mcrypt.h not found. Please reinstall libmcrypt.说明:缺少mcrypt库。

解决办法:

[root@1 php-5.6.30]# yum install -y libmcrypt-devel
+--------------------------------------------------------------------+| License:                                                           || This software is subject to the PHP License, available in this     || distribution in the file LICENSE.  By continuing this installation || process, you are bound by the terms of this license agreement.     || If you do not agree with the terms of this license, you must abort || the installation process at this point.                            |+--------------------------------------------------------------------+Thank you for using PHP.

环境配置完成!

编译和安装

编译:[root@1 php-5.6.30]# make[root@1 php-5.6.30]# echo $?0安装:[root@1 php-5.6.30]# make install[root@1 php-5.6.30]# echo $?0

安装完成!

PHP工作原理

将PHP的配置文件移动到./configure时指定的目录:

[root@1 php-5.6.30]# cp php.ini-production /usr/local/php/etc/php.ini

PHP在系统中是作为Apache的一个模块被调用的,所以不用执行名启动该PHP。

查看Apache的模块:

# /usr/local/apache2.4/bin/apachectl -M……dir_module (shared) alias_module (shared) php5_module (shared)

说明: 安装完成PHP后会在Apache中自动添加相应模块,同时在Apache配置文件/usr/local/apache2.4/conf/httpd.conf中也会自动添加相应配置内容。

[root@1 php-5.6.30]# vim /usr/local/apache2.4/conf/httpd.conf

 

11.13 安装PHP7

准备工作

安装包

下载:[root@1 src]# wget http://cn2.php.net/distributions/php-7.1.6.tar.bz2解压:[root@1 src]# tar -jxvf php-7.1.6.tar.bz2

安装PHP-7

因为在安装PHP5的时候所有依赖的库文件以及安装完,所以此次PHP7可以直接安装。

切换到目录php-7.1.6:

[root@1 src]# cd php-7.1.6

环境配置

[root@1 src]#  ./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注:次数与PHP-5的主要差异就是没有“--with-mysql”选项。

编译

[root@1 php-7.1.6]# make

注:编译完成后可以使用“echo $?”或“make test”命令检测编译是否存在错误。

安装

[root@1 php-7.1.6]# make install

工作原理

将PHP的配置文件移动到./configure时指定的目录:

[root@1 php-5.6.30]# cp php.ini-production /usr/local/php/etc/php.ini

查看Apache加载的PHP模块:

[root@1 php-7.1.6]# /usr/local/apache2.4/bin/apachectl -M…… php5_module (shared) php7_module (shared)

此时Apache默认加载两个PHP模块,那么为了正常使用需要通过编辑Apache的配置文件来指定其工作时默认调用哪个PHP模块(注释掉其中一个调用参数即可):

[root@1 php-7.1.6]# vim /usr/local/apache2.4/conf/httpd.conf

转载于:https://my.oschina.net/u/3706800/blog/1794167

你可能感兴趣的文章
self.navigationController退出到指定页面,或者一次性pop出n个页面
查看>>
iptables 端口转发以及双向通信
查看>>
备战一线互联网公司Java工程师面试题 (1)
查看>>
jquery图片切换插件jquery.cycle.js参数详解
查看>>
JavaScript push() 方法
查看>>
Map集合
查看>>
JSP基础语法1
查看>>
elasticsearch Java API 之GET API & DELETE API
查看>>
《深入理解Java虚拟机》——GC基础概念
查看>>
微信小程序联盟:官方文档+精品教程+demo集合(5月31日更新,持续更新中……)...
查看>>
Fastjson 的 Set类型和 WriteClassName 选项引起的BUG
查看>>
翻译: 星球生成 II
查看>>
IOS 多线程
查看>>
python序列化数据本地存放
查看>>
比较不错的图片上传插件
查看>>
判偶不判奇
查看>>
Sequelize 数据库的支持
查看>>
BigDecimal类的加减乘除
查看>>
node.js发送邮件email
查看>>
查看nginx配置文件路径的方法
查看>>