CentOS 7 编译错误解决方法集合
解决 error: the HTTP XSLT module requires the libxml2/libxslt
错误
yum -y install libxml2 libxml2-dev
yum -y install libxslt-devel
解决 error: the HTTP image filter module requires the GD library.
错误
yum -y install gd-devel
解决 error: the GeoIP module requires the GeoIP library.
错误
yum -y install GeoIP GeoIP-devel GeoIP-data
解决 error: the Google perftools module requires the Google perftools
错误
yum -y install gperftools
解决 error: libatomic_ops library was not found.
错误
yum -y install libuuid-devel libblkid-devel libudev-devel fuse-devel libedit-devel libatomic_ops-devel
解决 error trying to exec 'cc1plus': execvp: No such file or directory
错误
yum -y install gcc-c++
解决 error: [pool www] cannot get uid for user 'www-data'
错误
groupadd www-data
useradd -g www-data www-data
解决configure: error: mbed TLS libraries not found.
错误。
需要安装mbedtls,教程:https://www.24kplus.com/linux/281.html
解决 error: Cannot find OpenSSL's <evp.h>
错误
yum install openssl openssl-devel
ln -s /usr/lib64/libssl.so /usr/lib/
解决 error: Libtool library used but 'LIBTOOL' is undefined
错误
yum install libtool
解决 exec: g++: not found
错误
yum -y update gcc
yum -y install gcc+ gcc-c++
解决 configure: error: tss lib not found: libtspi.so
错误
yum install trousers-devel
解决 Can't exec "autopoint": No such file or directory
错误
yum install gettext gettext-devel gettext-common-devel
解决 configure: error: libcrypto not found.
错误
yum remove openssl-devel
yum -y install openssl-devel
解决 configure: error: Package requirements (libffi >= 3.0.0) were not met: No package 'libffi' found
错误
yum install libffi-devel
解决 fatal error: uuid.h: No such file or directory
错误
yum install e2fsprogs-devel uuid-devel libuuid-devel
解决 configure: error: openssl lib not found: libcrypto.so
错误
yum install openssl-devel
解决 tar (child): lbzip2: Cannot exec: No such file or directory
错误
yum -y install bzip2
解决 configure: error: C++ preprocessor "/lib/cpp" fails sanity check
错误
yum install gcc-c++
解决 configure: error: Please reinstall the BZip2 distribution
错误
yum install bzip2 bzip2-devel
解决 configure: error: cURL version 7.15.5 or later is required to compile php with cURL support
错误
yum install curl-devel
解决 configure: error: not found. Please provide a path to MagickWand-config or Wand-config program
错误
yum install ImageMagick-devel
解决 configure: error: no acceptable C compiler found in $PATH
错误
yum install gcc
解决 configure: error: Package requirements (icu-uc >= 50.1 icu-io icu-i18n) were not met:
错误
yum install libicu-devel
解决 configure: error: Package requirements (sqlite3 > 3.7.4) were not met: No package 'sqlite3' found
错误
yum install sqlite-devel
解决 configure: error: Package requirements (oniguruma) were not met: No package 'oniguruma' found
错误
yum install oniguruma oniguruma-devel
CentOS 7 编译错误解决方法集合的更多相关文章
- WORDPRESS 后台500错误解决方法集合
引自: http://www.guuglc.com/565.html 这篇文章本质上我是不可能会写到,就因为7号那天晚上,我准备搬家的时候,发现前台完好,进入后台却500错误. 这时我就得急的,毕竟明 ...
- mac os ssh远程链接centos提示证书错误解决方法
下面是错误提示 IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY! Someone could be eavesdropping on you ...
- VS C4819 编译错误解决方法
偶尔用别人的代码,出现: warning C4819: The file contains a character that cannot be represented ). Save the fil ...
- Cordova - 安装camera插件之后编译错误解决方法!
安装camera插件之后,编译出错,错误截图如下: 刚开始以为是AAPT编译导致的,尝试关闭AAPT编译选项,但是不行,认真看了一下编译出错信息,应该是缺少文件导致的,随后在对应的目录中加入了缺失的文 ...
- IIS 配置错误解决方法集合
问题:405 - 不允许用于访问此页的 HTTP 谓词 解决:IIS处理程序映射中添加模块映射,模块选择:ServerSideIncludeModule,名称:SSINC-HTML
- C编译错误解决方法
1.expected identifier before numeric constant 一般情况下是枚举类型中的某个变量已经被#define定义过一次了,在项目空间中搜索你枚举类型中的所有变量类型 ...
- Linux/CentOS 配置Mysql-server过程和遇到错误解决方法
第一步:下载mysql-server 方法1.wget url(你所要下载的链接,可以从mysq官网查找)到当前目录下 方法2.到mysql官网下载包之后通过xftp传到linux 第二步:解压tar ...
- hadoop本地库与系统版本不一致引起的错误解决方法
hadoop本地库与系统版本不一致引起的错误解决方法 部署hadoop的集群环境为 操作系统 centos 5.8 hadoop版本为cloudera hadoop-0.20.2-cdh3u3 集 ...
- 001. 使用ssh连接不上centos 6.5的解决方法及其解决中文乱码
1. 使用ssh连接不上centos 6.5的解决方法: 错误显示: Connecting to 192.168.1.106:22... Could not connect to '192.168.1 ...
随机推荐
- Git应用详解第四讲:版本回退的三种方式与stash
前言 前情提要:Git应用详解第三讲:本地分支的重要操作 git作为一款版本控制工具,其最核心的功能就是版本回退,没有之一.熟悉git版本回退的操作能够让你真真正正地放开手脚去开发,不用小心翼翼,怕一 ...
- .NET MVC中登录过滤器拦截的两种方法
今天给大家介绍两种ASP中过滤器拦截的两种方法. 一种是EF 的HtppModule,另一种则是灵活很多针对MVC的特性类 Attribute 具体什么是特性类可以参考着篇文章:https://www ...
- NS网络仿真,小白起步版,模拟仿真之间注意的事项
FTP是基于TCP的,所以FTP应用不可以绑定UDP发送代理 FTP和CBR属于应用流,他们用来绑定TCP和UDP发送代理 TCP用于发送代理时,接收代理为TCPSink,可以绑定FTP应用.CBR流 ...
- redis修改密码以及验证登录,启动服务常用命令
1.通过配置文件,直接修改 2.启动然后使用密码验证登录 3.redis常用命令 启动服务:redis-server --service-start重启服务:service redis restart ...
- MySQL5.7使用Notifier启动、停止服务时出现的问题
1.选择右击右下角 MySQL Notifier ,选择 Actions -> Manage Monitored Items 2.选择当前的服务 MySQL57 并进行删除 3.然后点击 a ...
- 关于SQLAlchemy ORM框架
SQLAlchemy 1.介绍 SQLAlchemy是一个基于Python实现的ORM框架.该框架建立在 DB API之上,使用关系对象映射进行数据库操作,简言之便是:将类和对象转换成SQL,然后使用 ...
- string 从下标0 一直截到倒数第三位
StringUtils.substring(String.valueOf(maxSequence), 0, -3)如上,关键就是那个-3,表示倒数第三位.
- phoenix 索引实践
准备工作 创建测试表 CREATE TABLE my_table ( rowkey VARCHAR NOT NULL PRIMARY KEY, v1 VARCHAR, v2 VARCHAR, v3 V ...
- BUG 测试计划
性能追求 目前状况 测试标准 APP平稳运行,无crush现象 快速下拉翻页时,崩溃退出 要求多人使用,均流畅无异常退出方可 页面的放大缩小不会造成页面显 ...
- 65535与TCP连接数的关系测试结论
首先说结论: .是否有关系 .有关系 对于客户端 -.对于客户端来说,只有65535,因为根据TCP四元组的sport来说,sport只有16位,所以(2^16)-1是65535.也就是最多有6553 ...