博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql-libs 和 MySQL-server冲突
阅读量:6194 次
发布时间:2019-06-21

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

  hot3.png

安装php-mysql

Yum install php-mysql

出现

from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL-server-5.6.13-1.linux_glibc2.5.x86_64

由于服务器先安装和配置好了MYSQL-SERVER

google到一外国网页的解决方法如下:

Well, this is a common problem with MySQL packages within CentOS 6. Yum is trying to satisfy requirements by installing mysql-libs-5.1.69-1.el6_4.x86_64. This package conflicts with files from package MySQL55-server-5.5.32-1.cp1136.x86_64.

There is a way to fix this without breaking your rpm database or uninstalling mysql55, just download mysql compatibility libs from mysql for el6 (CentOS and RHEL6 are full binary compatible). Get MySQL-shared-compat-5.5.32-2.el6.x86_64.rpm (just google for it) and install this rpm using: rpm -ihv MySQL-shared-compat-5.5.32-2.el6.x86_64.rpm. 

方法可行。

Glibc版本:rpm.pbone.net

wget

rpm -ihv MySQL-shared-compat-6.0.11-0.glibc23.x86_64.rpm

转载于:https://my.oschina.net/grail/blog/158517

你可能感兴趣的文章
第一章 污王尧成名之路
查看>>
ASP.NET Core 2.2 基础知识(七) 选项模式
查看>>
导出excel的另外一种方法
查看>>
BZOJ 1977 次小生成树(最近公共祖先)
查看>>
Web开发者必知的12款jQuery插件
查看>>
FileTable使用总结
查看>>
C#继承的特性
查看>>
IIS6.0配置注意
查看>>
(原创)C++11改进我们的程序之简化我们的程序(二)
查看>>
java base64编码和解码
查看>>
C#反射了解(转)
查看>>
Oracle bbed 五个 实用示例
查看>>
C#类型转化
查看>>
ruby文件操作大全
查看>>
Android 绑定类型服务---继承Binder类
查看>>
MVC和MVP的初步理解
查看>>
uniq 去除重复命令使用方法介绍
查看>>
oracle中使用聚合函数
查看>>
【转载】如何播放或流化 Windows Phone 的视频文件
查看>>
Java中重载重写
查看>>