web-dev-qa-db-ja.com

mysql-serverをcentos 6.7 32ビットにインストールできません。エラー:rpmが必要ですか?

次のコマンドを使用してcentosにmysql-serverをインストールしようとすると:

_yum install mysql-server_

サーバーの返信:

_  Loaded plugins: fastestmirror, security
Setting up Install Process
Loading mirror speeds from cached hostfile
epel/metalink                                            |  11 kB     00:00
 * base: centos.mia.Host-engine.com
 * epel: reflector.westga.edu
 * extras: centos.aol.com
 * remi-safe: mirrors.mediatemple.net
 * rpmforge: mirror.us.leaseweb.net
 * updates: mirror.math.princeton.edu
 * webtatic: us-east.repo.webtatic.com
base                                                     | 3.7 kB     00:00
epel                                                     | 4.3 kB     00:00
epel/primary_db                                          | 5.0 MB     00:00
extras                                                   | 3.4 kB     00:00
mysql-connectors-community                               | 2.4 kB     00:00
mysql-tools-community                                    | 2.5 kB     00:00
mysql56-community                                        | 2.5 kB     00:00
remi-safe                                                | 2.9 kB     00:00
rpmforge                                                 | 1.9 kB     00:00
updates                                                  | 3.4 kB     00:00
webtatic                                                 | 3.6 kB     00:00
Package mysql-server is obsoleted by mysql-community-server, trying to install mysql-community-server-5.6.30-2.el7.i686 instead
Resolving Dependencies
Running transaction check
Package mysql-community-server.i686 0:5.6.30-2.el7 will be installed
Processing Dependency: mysql-community-common(x86-32) = 5.6.30-2.el7 for
. 
.
.
etc . . . .
.
.
    .

Processing Dependency: systemd for package: mysql-community-server-5.6.30-2.el7.i686

Processing Dependency: libstdc++.so.6(GLIBCXX_3.4.15) for package: mysql-community-server-5.6.30-2.el7.i686

Processing Dependency: libc.so.6(GLIBC_2.17) for package: mysql-community-server-5.6.30-2.el7.i686

Finished Dependency Resolution

Error: Package: mysql-community-libs-5.6.30-2.el7.i686 (mysql56-community)

Requires: libc.so.6(GLIBC_2.17)

Error: Package: mysql-community-server-5.6.30-2.el7.i686 (mysql56-community)
  Requires: systemd
Error: Package: mysql-community-server-5.6.30-2.el7.i686 (mysql56-community)
 Requires: libstdc++.so.6(GLIBCXX_3.4.15)
Error: Package: mysql-community-client-5.6.30-2.el7.i686 (mysql56-community)
 Requires: libc.so.6(GLIBC_2.17)
Error: Package: mysql-community-server-5.6.30-2.el7.i686 (mysql56-community)
 Requires: libc.so.6(GLIBC_2.17)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest
_

Webでlibc.so.6(GLIBC_2.17)を検索しましたが、_glibc-2.17-106.el7_2.1.x86_64.rpm_しか見つかりませんが、centos 7.2が見つかりました。

便利かどうかわかりません!使い方がわからない。

2
Ahmad Mobaraki

CentOS 6パッケージ(.el6)とCentOS 7パッケージ(.el7)を混在させていますが、これは無効です。彼らは大きく異なります。

mysql56-community-release-el7.*の代わりにmysql56-community-release-el6*をインストールしました どこから を取得します。

この間違ったパッケージソースを削除します。

yum remove "mysql56-community-release-el7.*"

正しいものをインストールし(前述のインストール済みのものをインストールした場合)、それが機能するはずです。


mysql-56-community/etc/yum.repos.d/を見つけて、内部でenable=0を設定して無効にします。

5
Jakuje