zoukankan      html  css  js  c++  java
  • Navicat 连接VMware中Ubuntu 下的mysql5.7遇到的坑

    1.用Navicat连接虚拟机下的mysql出现问题: 2003- Can't connect MySQL Server on '192.168.*.*'(10038).

    解决方案:

    方法:直接授权(推荐)

      从任何主机上使用root用户,密码:youpassword(你的root密码)连接到mysql服务器:
      # mysql -u root -proot 
      mysql>GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'youpassword' WITH GRANT OPTION;

    2. 由于操作错误,再次登录出现问题:“ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)”。

    解决方案:

    1、跳过密码进行登录

      修改mysql配置文件   在[mysqld]的段中加上两句:

        skip-name-resolve   
        skip-grant-tables   

    2. 登录mysql,修改密码

    /usr/bin/mysql登入mysql

    use mysql ;   
    update mysql.user set authentication_string=password('root') where user='root';
    flush privileges;   
    quit 

    3. 重启mysql服务

      service mysql restart

  • 相关阅读:
    集训队日常训练20180518-DIV1
    集训队日常训练20180513-DIV1
    python类的使用与多文件组织
    性能指标
    python调用.so
    动态链接库的使用
    python读写xml文件
    使用python读取文本中结构化数据
    python画图
    numpy及scipy的使用
  • 原文地址:https://www.cnblogs.com/charliePU/p/7429251.html
Copyright © 2011-2022 走看看