CentOS编译安装PHP常见错误及解决办法
1.configure: error: No curses/termcap library found
- yum -y install ncurses-devel
2.configure: error: xml2-config not found. Please check your libxml2 installation.
- yum -y install libxml2 libxml2-devel
3.configure: error: Cannot find OpenSSL’s
- yum -y install openssl-devel
4.configure: error: libjpeg.(a|so) not found
- yum -y install gd gd-devel
5.configure: error: Could not find net-snmp-config binary. Please check your net-snmp installation.
- yum -y install net-snmp-devel
6.configure: error: cannot find output from lex; giving up
- yum -y install flex
7.configure: error: mod_deflate has been requested but can not be built due to prerequisite failures
- yum -y install zlib-devel openssl-devel
8.configure: error: libxpm.(a|so) not found.
- yum -y install libxpm-dev
9.configure: error: freetype.h not found.
- yum install freetype-devel
10.configure: error: …No recognized SSL/TLS toolkit detected
- yum -y install libssl-dev
11.Configure: error: Please reinstall the BZip2 distribution
- yum install bzip2 bzip2-devel
12.Configure: error: Please reinstall the libcurl distribution – easy.h should be in /include/curl/
- yum install curl curl-devel
13.Configure: error: Unable to locate gmp.h
- yum install gmp-devel
14.configure: error: Cannot find libpq-fe.h. Please specify correct PostgreSQL installation path
- yum -y install postgresql-devel
15.Configure: error: Please reinstall the ncurses distribution
- yum install ncurses ncurses-devel
16.Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!
- yum install unixODBC-devel
17.Configure: error: Cannot find pspell
- yum install pspell-devel
18.configure: error: mcrypt.h not found. Please reinstall libmcrypt.
- yum install libmcrypt libmcrypt-devel
19.Configure: error: snmp.h not found. Check your SNMP installation.
- yum install net-snmp net-snmp-devel
20.开启LDAP服务
- yum -y install openldap-devel openldap-servers openldap-clients
21.configure: error: cannot find output from lex; giving up
- yum -y install flex
22.configure: error: mod_deflate has been requested but can not be built due to prerequisite failures
- yum -y install zlib-devel openssl-devel
CentOS编译安装PHP常见错误及解决办法的更多相关文章
- PHP编译安装时常见错误及解决办法,大全
1. configure: error: xslt-config not found. Please reinstall the libxslt >= 1.1.0 distribution ...
- PHP编译安装时常见错误解决办法,php编译常见错误
PHP编译安装时常见错误解决办法,php编译常见错误 1.configure: error: xslt-config not found. Please reinstall the libxslt & ...
- github常见操作和常见错误及其解决办法
一.常见操作 1. 使用git在本地创建一个项目的过程 $ makdir ~/hello-world //创建一个项目hello-world $ cd ~/hello-world //打开这个项目 $ ...
- Docker Hadoop 配置常见错误及解决办法
Docker Hadoop 配置常见错误及解决办法 问题1:wordcount运行卡住,hadoop 任务运行到running job就卡住了 INFO mapreduce.Job: Running ...
- Ubuntu下Linux配置内核各种常见错误和解决办法
镜像下载.域名解析.时间同步请点击阿里云开源镜像站 这篇把Ubuntu下Linux配置内核各种常见错误和解决办法给大家讲解一下,希望可以帮助到大家. 一.Ubuntu系统中缺少各种依赖包导致的问题 1 ...
- MVC MVC常见错误及解决办法
MVC常见错误及解决办法 问题1: 必须添加对程序集“EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c5 ...
- 使用wubi安装ubuntu14.04出现的常见错误的解决办法
花了一天的时间终于安装上了Ubuntu14.04,过程坎坷,是血泪史,开始报“cannot download the metalink and therefore the ISO”错误,解决后,又报“ ...
- Oracle的常见错误及解决办法
ORA-12528: TNS:listener: all appropriate instances are blocking new connections ORA-12528问题是因为监听中的服务 ...
- 7.2.*PHP编译安装时常见错误解决办法,php编译常见错误
configure: error: Cannot find ldap.h 检查下面是不是已经安装,如果没有安装之:检查:yum list openldapyum list openldap-dev ...
随机推荐
- ECMAScript5.1的运算符、类型转换总结
一.运算符优先级 从高到低 运算符 说明 () 圆括号 . [] new(带参数列表) 字段访问.数组索引.new(带参数列表) () new(无参数列表) 函数调用,无参数列表 ++(后置递增) - ...
- java基础(十四)-----详解匿名内部类——Java高级开发必须懂的
在这篇博客中你可以了解到匿名内部类的使用.匿名内部类要注意的事项.匿名内部类使用的形参为何要为final. 使用匿名内部类内部类 匿名内部类由于没有名字,所以它的创建方式有点儿奇怪.创建格式如下: n ...
- 从锅炉工到AI专家(1)
序言 标题来自一个很著名的梗,起因是知乎上一个问题:<锅炉设计转行 AI,可行吗?>,后来就延展出了很多类似的问句,什么"快递转行AI可行吗?"."xxx转行 ...
- HBase学习-HBase原理
1.系统架构 1.1 图解 从HBase的架构图上可以看出,HBase中的组件包括Client.Zookeeper.HMaster.HRegionServer.HRegion.Store.MemS ...
- C#线程安全使用(三)
在讲CancellationTokenSource之前我决定先讲一下lock和Interlocked,如果能很好的理解这两个,再去理解CancellationTokenSource就会方便很多,由于我 ...
- 磊哥评测之数据库:腾讯云MongoDB vs自建
本文由云+社区发表 作者:磊哥 上期文章我们聊到了redis.这期我们来说说另一个网红nosql数据库:MongoDB.有这么一个介绍MongoDB的说法是:MongoDB是非关系数据库当中功能最丰富 ...
- Flask的请求处理机制
在Flask的官方文档中是这样介绍Flask的: 对于Web应用,与客户端发送给服务器的数据交互至关重要.在Flask中由全局的request对象来提供这些信息 属性介绍 request.method ...
- VS Code调试.Net Core版Hello World
安装C#插件 下载安装插件,地址:https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp 安装插件之后重新启动VS C ...
- Java Calendar类的使用总结
在实际项目当中,我们经常会涉及到对时间的处理,例如登陆网站,我们会看到网站首页显示XXX,欢迎您!今天是XXXX年....某些网站会记录下用户登陆的时间,比如银行的一些网站,对于这些经常需要处理的问题 ...
- iview-admin框架运行步骤
第一步: 前往github下载整个iview-admin框架的全部源码 github地址: https://github.com/iview/iview-admin 第二步: 点击Clone or d ...