Error: Package: 2:postfix-2.6.6-6.el6_7.1.x86_64 (@updates)
Requires: libmysqlclient.so.16()(64bit)
Removing: mysql-libs-5.1.73-5.el6_6.x86_64 (@base)
libmysqlclient.so.16()(64bit)
Obsoleted By: mysql-community-libs-5.6.29-2.el7.x86_64 (mysql56-community)
Not found Error: Package: nagios-plugins-mysql-2.0.3-3.el6.x86_64 (@epel)
Requires: libmysqlclient.so.16(libmysqlclient_16)(64bit)
Removing: mysql-libs-5.1.73-5.el6_6.x86_64 (@base)
libmysqlclient.so.16(libmysqlclient_16)(64bit)
Obsoleted By: mysql-community-libs-5.6.29-2.el7.x86_64 (mysql56-community)
Not found Error: Package: 2:postfix-2.6.6-6.el6_7.1.x86_64 (@updates)
Requires: libmysqlclient.so.16(libmysqlclient_16)(64bit)
Removing: mysql-libs-5.1.73-5.el6_6.x86_64 (@base)
libmysqlclient.so.16(libmysqlclient_16)(64bit)
Obsoleted By: mysql-community-libs-5.6.29-2.el7.x86_64 (mysql56-community)
Not found Error: Package: mysql-community-libs-5.6.29-2.el7.x86_64 (mysql56-community)
Requires: libc.so.6(GLIBC_2.17)(64bit)Error: Package: nagios-plugins-mysql-2.0.3-3.el6.x86_64 (@epel)
Requires: libmysqlclient.so.16()(64bit)
Removing: mysql-libs-5.1.73-5.el6_6.x86_64 (@base)
libmysqlclient.so.16()(64bit)
Obsoleted By: mysql-community-libs-5.6.29-2.el7.x86_64 (mysql56-community)
Not found You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest
後にこれに直面する
Sudo rpm -Uvh http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
http://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/#repo-qg-yum-fresh-install
このリンクをたどり、実行して前のリンクを削除する
Sudo rpm -e http://repo.mysql.com/mysql-community-release-el7-5.noarch
私は自分の問題を解決しました。
説明:RHEL6互換OS上のRedhatEnterprise Linux7用に構築されたRPMを含むMySQLリポジトリからインストールしようとしました。これにより、さまざまな依存関係の不一致が発生します。正しいMySQLリポジトリに切り替えると、問題が解決します。
IUSリポジトリ を使用することをお勧めします。これは、Red Hat Enterprise Linux(RHEL)およびCentOS用に特別に設計されているためです。
# wget https://dl.iuscommunity.org/pub/ius/IUS-COMMUNITY-GPG-KEY -O /etc/pki/rpm-gpg/IUS-COMMUNITY-GPG-KEY
# rpm --import /etc/pki/rpm-gpg/IUS-COMMUNITY-GPG-KEY
# yum -y install https://dl.iuscommunity.org/pub/ius/stable/CentOS/6/x86_64/ius-release-1.0-14.ius.centos6.noarch.rpm
しかし残念ながら、それを行う簡単な方法はありません。少し注意が必要です
# wget https://dl.iuscommunity.org/pub/ius/stable/CentOS/6/x86_64/mysql56u-libs-5.6.29-1.ius.centos6.x86_64.rpm
# rpm -ivh --nodeps --force mysql56u-libs-5.6.29-1.ius.centos6.x86_64.rpm
Preparing... ########################################### [100%]
1:mysql56u-libs ########################################### [100%]
# yum erase mysql-libs
その後、通常どおり、yumを介してmysqlサーバーをインストールできます。
# yum install mysql56u-server.x86_64 mysql56u.x86_64 mysql56u-common.x86_64 mysqlclient16.x86_64
パッケージmysqlclient16は、下位互換性のためにmysql-libの代わりになります。
# yum info mysqlclient16
Name : mysqlclient16
Arch : x86_64
Version : 5.1.61
Release : 4.ius.centos6
Size : 4.1 M
Repo : ius
Summary : Backlevel MySQL shared libraries.
URL : http://www.mysql.com
License : GPL
Description : This package contains backlevel versions of the MySQL client libraries
: for use with applications linked against them. These shared libraries
: were created using MySQL 5.1.61.
Mysql 5.5/5.7が必要な場合は、mysql56uをmysql55/mysql57uに置き換えるだけです。