zoukankan      html  css  js  c++  java
  • 连接数据库出现错误:1045-Access denied for user 'root'@'localhost'解决方法

    Navicat for MySQL

    链接: https://pan.baidu.com/s/1slwQxVB 密码: r737

    1、出现这个问题的原因之一是权限的问题,也就是说你的电脑可能没有权限访问mysql数据库。

    讲道理这种情况其实基本上不该遇到,因为我们在安装mysql之后,root其实是有最高权限的,而且很少会有人去修改root的权限。

    这个问题的解决方法就是授权。授权命令大概是这样的:

    grant all privileges on *.* to 'root'@'192.168.0.103' identified by '123456';
    如果你是本地登录的,那么:
    grant all privileges on *.* to 'root'@'localhost' identified by '123456';
    当然你也可以直接改成这样:
    grant all privileges on *.* to 'root'@'%' identified by '123456';
    就可以给所有ip都设定root登陆了。
    如果授权成功,会有Query OK的提示。
    然后:
    flush privileges;
    这个是刷新授权的意思,如果没有这句话,授权可能无法立刻生效。
    exit;
    这个是退出的意思。

    mysql> UPDATE user SET Password=PASSWORD(’newpassword’) where USER=’root’; 
    mysql> FLUSH PRIVILEGES; 
    mysql> quit 
    # mysql -uroot -p 
    Enter password: <输入新设的密码newpassword> 
    mysql> 

  • 相关阅读:
    getRandomInt getRandomString
    git 换行符替换
    Versions maven plugin 修改版本
    spotless-maven-plugin java代码自动格式化mvn spotless:apply -fn
    eclipse.ini
    JVM架构和GC垃圾回收机制
    查看搜狗浏览器记住的密码
    TestGc finalize()
    Storm个人学习总结
    mongo嵌套查询
  • 原文地址:https://www.cnblogs.com/jasonLiu2018/p/11742927.html
Copyright © 2011-2022 走看看