zoukankan      html  css  js  c++  java
  • 安装mysql报Requires: libc.so.6(GLIBC_2.17)(64bit)

    1. Error: Package: mysql-community-server-5.6.40-2.el7.x86_64 (mysql56-community)

    2.            Requires: libc.so.6(GLIBC_2.17)(64bit)

    3. Error: Package: mysql-community-server-5.6.40-2.el7.x86_64 (mysql56-community)

    4.            Requires: systemd

    5. Error: Package: mysql-community-libs-5.6.40-2.el7.x86_64 (mysql56-community)

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

    7. Error: Package: mysql-community-server-5.6.40-2.el7.x86_64 (mysql56-community)

    8.            Requires: libstdc++.so.6(GLIBCXX_3.4.15)(64bit)

    9. Error: Package: mysql-community-client-5.6.40-2.el7.x86_64 (mysql56-community)

    10.            Requires: libc.so.6(GLIBC_2.17)(64bit)

    11.  You could try using --skip-broken to work around the problem

    12.  You could try running: rpm -Va --nofiles --nodigest

    解决方案如下:https://unix.stackexchange.com/questions/280385/can-not-install-mysql-server-on-centos-6-7-32bit-error-need-rpm #cd /etc/yum.repos.d/

    1. #sudo vi mysql-community.repo

    2.  
    1. 找到mysql-56-community

    2.  
    1. 将enable置为0 enable=0

    2. 重新安装mysql sudo yum install mysql-server

    -------------------------------------------------------------------------

    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
              设置开机启动:
                添加开机启动:chkconfig --add mysqld;
                开机启动: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;
     

  • 相关阅读:
    RabbitMq使用说明
    php使用rabbitmq需安装amqp拓展协议
    新建springboot web项目pom报错
    HttpRunner Manager 接口自动化平台搭建
    数据库存储过程进行批量插入数据
    Windows系统下Robot Framework的安装
    利用Charles模拟客户端弱网环境进行弱网测试
    JMeter进行简单的接口压测
    JMeter的安装和使用
    grep, sed 和 awk 学习总结
  • 原文地址:https://www.cnblogs.com/pigdata/p/10305617.html
Copyright © 2011-2022 走看看