当前位置: 代码迷 >> 综合 >> 安装mysql报Requires: libc.so.6(GLIBC_2.17)(64bit)
  详细解决方案

安装mysql报Requires: libc.so.6(GLIBC_2.17)(64bit)

热度:39   发布时间:2023-12-24 02:00:47.0

1.问题描述

安装mysql报Requires: libc.so.6(GLIBC_2.17)(64bit)

2.问题详情 

Error: Package: mysql-community-server-5.6.40-2.el7.x86_64 (mysql56-community)Requires: libc.so.6(GLIBC_2.17)(64bit)Error: Package: mysql-community-server-5.6.40-2.el7.x86_64 (mysql56-community)Requires: systemdError: Package: mysql-community-libs-5.6.40-2.el7.x86_64 (mysql56-community)Requires: libc.so.6(GLIBC_2.17)(64bit)Error: Package: mysql-community-server-5.6.40-2.el7.x86_64 (mysql56-community)Requires: libstdc++.so.6(GLIBCXX_3.4.15)(64bit)Error: Package: mysql-community-client-5.6.40-2.el7.x86_64 (mysql56-community)Requires: libc.so.6(GLIBC_2.17)(64bit)You could try using --skip-broken to work around the problemYou could try running: rpm -Va --nofiles --nodigest

 

3.解决方案如下:

 

https://unix.stackexchange.com/questions/280385/can-not-install-mysql-server-on-centos-6-7-32bit-error-need-rpm #cd /etc/yum.repos.d/#sudo vi mysql-community.repo
找到mysql-56-community
将enable置为0 enable=0重新安装mysql sudo yum install mysql-server

4.扩展

mysql 安装

1.获取yum安装源

wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm

2.安装yum安装源
 

 rpm -ivh mysql-community-release-el7-5.noarch.rpm 

 
3.

yum -y install mysql-server   /yum makecache


4.启动mysql  


service mysqld start或者/etc/init.d/mysqld start
     设置开机启动:

  1.  添加开机启动:chkconfig --add mysqld;
  2. 开机启动:chkconfig mysqld on;

     停止 MySQL 服务: 
        service mysqld stop


5.  MySQL 登陆等权限设置

   mysql -u root;use mysql ;update user set password=password("123456") where user="root";flush privileges;


 

  相关解决方案