博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos 7 编译 php 5.3.28
阅读量:6608 次
发布时间:2019-06-24

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

hot3.png

由于centos7 自带的php版本为5.4的版本,代码不支持,降级到5.3 一路坎坷。只能以笔记记录下来。

下载,编译。报错如下:

 configure error : Cannot find libmysqlclient under /usr.

首先从mysql.com 上下载5.5 二进制编译好的mysql版本。

下载后解压放到/usr/local/mysql 

继续编译,还是报同样的错误。查找半天,结果发现是–with-libdir=lib64 这个参数惹的祸,去掉进行编译。没有任何问题。

第二个问题,无法加载memchae 模块。只能重新编译php,下载php模块到 ext 这个目录下

然后下载autoconf 2.13的版本 进行编译,原来的版本备份,快捷方式一个到/usr/bin,否则报错如下:

buildconf: checking installation...buildconf: autoconf not found.You need autoconf version 2.13 or newer installed

autoconf 下载地址:

http://ftp.gnu.org/gnu/autoconf/

在php 编译目录下执行:

./buildconf --force

执行完成后会看到有--enable-memchae 这个参数。编译即可通过。

参考:http://www.serveridol.com/2012/11/02/php-install-configure-error-cannot-find-libmysqlclient-under-usr/

转载于:https://my.oschina.net/u/142602/blog/294175

你可能感兴趣的文章
nginx安装与配置2(转载)
查看>>
Linux下Mongodb安装和启动配置
查看>>
2015 成长计划
查看>>
沈阳一饭店凌晨爆燃,燃气报警器时刻预防
查看>>
Redis 与 数据库处理数据的两种模式
查看>>
VUE2中axios的使用方法
查看>>
CS 229 notes Supervised Learning
查看>>
2018.10.27-dtoj-3996-Lesson5!(johnny)
查看>>
DataTable转换成json字符串
查看>>
ubuntu 12.04 安装 redis
查看>>
Sql Server中不常用的表运算符之APPLY(1)
查看>>
【DM642】ICELL Interface—Cells as Algorithm Containers
查看>>
linux所有命令失效的解决办法
查看>>
力扣算法题—085最大矩阵
查看>>
svs 在创建的时候 上传文件夹 bin obj 这些不要提交
查看>>
mysql-用命令导出、导入表结构或数据
查看>>
Tinkphp
查看>>
EntityFrameworkCore 一对一 && 一对多 && 多对多配置
查看>>
How to temporally disable IDE tools (load manually)
查看>>
Vue.js学习 Item4 -- 数据双向绑定
查看>>