Install mysql-libs on a server with MySQL-Server5.5

I am trying to install ReviewBoard on my server, but I keep getting the following errors.

file /usr/share/mysql/greek/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL55-server-5.5.32-1.cp1136.x86_64 file /usr/share/mysql/hungarian/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL55-server-5.5.32-1.cp1136.x86_64 file /usr/share/mysql/italian/errmsg.sys from install of mysql-libs-5.1.69-1.el6_4.x86_64 conflicts with file from package MySQL55-server-5.5.32-1.cp1136.x86_64 

OS - Centos 6. Can someone explain to me what I should do to fix this problem? I read that I must first delete the MySQL server, but I have numerous websites that run from it, so this is not an option. What are you suggesting me to do? Is there any way around this?

Regards, EZFrag

+4
source share
2 answers

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

It is possible to fix this without breaking the rpm database or removing mysql55, just download mysql compatible libraries from mysql for el6 (CentOS and RHEL6 are fully 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

After that, you can install ReviewBoard without yum trying to install mysql51 libs to satisfy the dependencies.

Here is the link to the official package provided by MySQL: collaboration with MySQL

+14
source

I ran into this problem when upgrading mysql to 5.5-remi, but this is caused by the old yum cache.

0
source

Source: https://habr.com/ru/post/1490334/


All Articles