zoukankan      html  css  js  c++  java
  • WARNING: The host 'db01' could not be looked up with /data/mysql/bin/resolveip. This probably means that your libc libraries are not 100 % compatible with this binary MySQL version......

      Linux系统安装MySQL,环境参数:

      硬件配置:
    CPU: Xeon(R) CPU E5-2650 v4 @ 2.20GHz 8核
    内存:16G
    硬盘:系统盘200GB 数据盘1TB
      操作系统
    CentOS 7.2 64位
      数据库
    MySQL 5.6.43

      执行scripts/mysql_install_db --user=mysql脚本报错:

    WARNING: The host 'db01' could not be looked up with /data/mysql/bin/resolveip.
    This probably means that your libc libraries are not 100 % compatible
    with this binary MySQL version. The MySQL daemon, mysqld, should work
    normally with the exception that host name resolving will not work.
    This means that you should use IP addresses instead of hostnames
    when specifying MySQL privileges !

      解决办法很简单,把主机名和IP对应关系写入/etc/hosts下即可,我的脚本如下:

    echo "10.36.7.155 db01" >> /etc/hosts

  • 相关阅读:
    线程同步锁的使用方式
    EventBus简单封装
    Dagger2不自动生成daggerXXXcomponent
    android mvp模式
    第八天
    单词统计续
    学习进度第十一周
    第七天
    第六天
    第五天
  • 原文地址:https://www.cnblogs.com/JohanChan/p/12092337.html
Copyright © 2011-2022 走看看