Установка из RPM выдает странную ошибку зависимости

Установка из RPM выдает странную ошибку зависимости

Я пытаюсь установить MySQL из файла RPM и вот что получаю.

libaio.so.1 is needed by MySQL-server-5.6.14-1.el6.i686
libaio.so.1(LIBAIO_0.1) is needed by MySQL-server-5.6.14-1.el6.i686
libaio.so.1(LIBAIO_0.4) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6 is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.0) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.1) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.1.2) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.1.3) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.10) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.2) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.2.3) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.3) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.3.3) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.3.4) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.4) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.7) is needed by MySQL-server-5.6.14-1.el6.i686
libc.so.6(GLIBC_2.8) is needed by MySQL-server-5.6.14-1.el6.i686
libcrypt.so.1 is needed by MySQL-server-5.6.14-1.el6.i686
libcrypt.so.1(GLIBC_2.0) is needed by MySQL-server-5.6.14-1.el6.i686
libdl.so.2 is needed by MySQL-server-5.6.14-1.el6.i686
libdl.so.2(GLIBC_2.0) is needed by MySQL-server-5.6.14-1.el6.i686
libdl.so.2(GLIBC_2.1) is needed by MySQL-server-5.6.14-1.el6.i686
libgcc_s.so.1 is needed by MySQL-server-5.6.14-1.el6.i686
libgcc_s.so.1(GCC_3.0) is needed by MySQL-server-5.6.14-1.el6.i686
libgcc_s.so.1(GLIBC_2.0) is needed by MySQL-server-5.6.14-1.el6.i686
libm.so.6 is needed by MySQL-server-5.6.14-1.el6.i686
libm.so.6(GLIBC_2.0) is needed by MySQL-server-5.6.14-1.el6.i686
libm.so.6(GLIBC_2.1) is needed by MySQL-server-5.6.14-1.el6.i686
libpthread.so.0 is needed by MySQL-server-5.6.14-1.el6.i686
libpthread.so.0(GLIBC_2.0) is needed by MySQL-server-5.6.14-1.el6.i686
libpthread.so.0(GLIBC_2.1) is needed by MySQL-server-5.6.14-1.el6.i686
libpthread.so.0(GLIBC_2.2) is needed by MySQL-server-5.6.14-1.el6.i686
libpthread.so.0(GLIBC_2.3.2) is needed by MySQL-server-5.6.14-1.el6.i686
librt.so.1 is needed by MySQL-server-5.6.14-1.el6.i686
librt.so.1(GLIBC_2.2) is needed by MySQL-server-5.6.14-1.el6.i686
libstdc++.so.6 is needed by MySQL-server-5.6.14-1.el6.i686
libstdc++.so.6(CXXABI_1.3) is needed by MySQL-server-5.6.14-1.el6.i686
libstdc++.so.6(GLIBCXX_3.4) is needed by MySQL-server-5.6.14-1.el6.i686
libstdc++.so.6(GLIBCXX_3.4.11) is needed by MySQL-server-5.6.14-1.el6.i686

решение1

ОтLinuxQuestions.orgФорум:

Самый простой способ — сделать резервную копию вашего /usr/lib/libstdc++.so.6.0.8 и удалить ссылку libstdc++.so.6 и использовать замену, которая работает с вашим glibc: обычно это libstdc++.so.6.0.13 из пакета libstdc++6_4.4.5-8_i386.deb (32 бита)http://ftp.de.debian.org/debian/pool...4.5-8_i386.deb64 битаhttp://ftp.de.debian.org/debian/pool....5-8_amd64.deb

Распакуйте с помощью: ar -x .deb && tar xvf data.tar.gz, ... и скопируйте libstdc++.so.6.0.13 в /usr/lib/, и: # ln -s libstdc++.so.6.0.13 libstdc++.so.6

Ссылка:http://packages.debian.org/squeeze/libstdc++6

решение2

Как вы это устанавливаете? rpm -ivh? вы можете установить с помощью "yum install filename.rpm". Таким образом, yum попытается разрешить зависимости самостоятельно.

с другой стороны, эта ссылка для 5.6.15 может оказаться полезной http://tecadmin.net/step-to-install-mysql-5-6-12-on-centos-6-and-rhel-6/#

Связанный контент