PHP安装错误 configure: error: xml2-config not found. Please check your libxml2 installation.

简介:
PHP安装错误 configure: error: xml2-config not found. Please check your libxml2 installation.
今天重新安装fedora core 5,重装mysql+apache+php,configure php的时候得到错误信息
<pre><code>./configure --prefix=/usr/local/php --with-apxs=/usr/local/apache --with-mysql
configure: error: xml2-config not found. Please check your libxml2 installation.
</code></pre>
错误原因,xml2-config这个文件没找到。
/*我记得上一次装php时没有这个问题的,那么原因就出在我这次安装fc5,有很多东西没选上,所以总是出问题。*/
根据错误提示,安装libxml2。fc5的安装光盘上提供了很多rpm包,我的是dvd光盘,位置在/media/disk/Fedora/RPMS,
<pre><code>
cd /media/disk/Fedora/RPMS
ls *libxml*
 /*找到这两个有用的包, libxml2-2.6.23-1.2.i386.rpm  libxml2-devel-2.6.23-1.2.i386.rpm     */
rpm -ivh libxml2-2.6.23-1.2.i386.rpm 
/*提示我已经安装过了*/
rpm -ivh libxml2-devel-2.6.23-1.2.i386.rpm 
</code></pre>
现在我重新./configure --prefix=/usr/local/php --with-apxs=/usr/local/apache --with-mysql
好了,没有问题了,
make
make install

安装完成


本文转自holy2009 51CTO博客,原文链接:http://blog.51cto.com/holy2010/360365

相关文章
IDEA添加Swagger2:Parameter 0 of method linkDiscoverers in org. springframework hateoas.config.Hateoasconfiguration required a single bean, but 15 were found:
IDEA添加Swagger2:Parameter 0 of method linkDiscoverers in org. springframework hateoas.config.Hateoasconfiguration required a single bean, but 15 were found
|
5月前
|
开发工具 git
*** Please tell me who you are.Run git config --global user.email “you@example.com“ git confi
*** Please tell me who you are.Run git config --global user.email “you@example.com“ git confi
|
6月前
|
关系型数据库 MySQL 数据库
Mysql-错误处理: Found option without preceding group in config file
Mysql-错误处理: Found option without preceding group in config file
762 0
|
6月前
|
Dubbo 应用服务中间件
【Default config not found for ApplicationConfig】的一种解决方案
【Default config not found for ApplicationConfig】的一种解决方案
681 0
|
关系型数据库 MySQL Linux
DVWA CentOS Could not connect to the MySQL service. Please check the config file.
DVWA CentOS Could not connect to the MySQL service. Please check the config file.
67 0
|
Java
解决:Config service failed to start in 120 seconds! Please check ./service/apollo-service.log...
解决:Config service failed to start in 120 seconds! Please check ./service/apollo-service.log...
156 0
|
1月前
|
XML 前端开发 Java
讲解SSM的xml文件
本文详细介绍了SSM框架中的xml配置文件,包括springMVC.xml和applicationContext.xml,涉及组件扫描、数据源配置、事务管理、MyBatis集成以及Spring MVC的视图解析器配置。
59 1
|
3月前
|
XML Java 数据格式
Spring5入门到实战------7、IOC容器-Bean管理XML方式(外部属性文件)
这篇文章是Spring5框架的实战教程,主要介绍了如何在Spring的IOC容器中通过XML配置方式使用外部属性文件来管理Bean,特别是数据库连接池的配置。文章详细讲解了创建属性文件、引入属性文件到Spring配置、以及如何使用属性占位符来引用属性文件中的值。
Spring5入门到实战------7、IOC容器-Bean管理XML方式(外部属性文件)
|
12天前
|
Java Maven
maven项目的pom.xml文件常用标签使用介绍
第四届人文,智慧教育与服务管理国际学术会议(HWESM 2025) 2025 4th International Conference on Humanities, Wisdom Education and Service Management
64 8
|
1月前
|
XML JavaScript Java
java与XML文件的读写
java与XML文件的读写
26 3