Centos 安装crond出现报错

Centos6.8下安装crond程序,具体报错如下: [code]---> Package kbd-misc.noarch 0:1.15-11.el6 will be installed --> Processing Conflict: mysql55w-libs-5.5.54-1.w6.x86_64 conflicts mysql-libs < 5.5 --> Finished Dependency Resolution Error: mysql55w-libs conflicts with mysql-libs-5.1.73-8.el6_8.x86_64 You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest[/code]请问这个怎么解决?
已邀请:

Nock - 万物本平等,无奈现实俗!

赞同来自: koyo

这个是因为你安装crond所依赖的mysql-libs版本在你的yum源库里面只有5.1.73版本的,但是mysql55w-libs依赖的mysql-libs包应该要大于5.5的版本,具体解决步骤如下:
# cd /usr/local/src
# wget 'ftp://rpmfind.net/linux/remi/enterprise/6/remi/x86_64/mysql-libs-5.5.54-1.el6.remi.x86_64.rpm'
# rpm -ivh mysql-libs-5.5.54-1.el6.remi.x86_64.rpm
然后你在安装cronie软件包,就可以了。

要回复问题请先登录注册