zoukankan      html  css  js  c++  java
  • 完美解决Mysql的Access denied for user 'root'@'%的'问题

    背景:mysql5.6 root已授权所有数据库,执行过下面的语句

    grant all privileges on *.* to 'root'@'%' identified by 'root'

    当使用root登录,然后新建数据库,新建用户的时候,给新用户授权的时候却提示 access deny

    解决办法:

    第一步:停服务
    命令行:
    /etc/init.d/mysql stop
    如果不行,就执行下一行:
    service mysqld stop
    报:
    Stopping mysqld: [ OK ]


    第二步:跳过密码验证
    执行命令行:
    # /usr/bin/mysqld_safe --skip-grant-tables
    报:
    151104 09:07:56 mysqld_safe Logging to '/var/lib/mysql/iZ23dq2wm0jZ.err'.
    151104 09:07:56 mysqld_safe Starting mysqld daemon with databases from /var/lib/mysql


    第三步:无密码登录
    执行命令行:
    mysql -u root


    第四步:授权
    mysql>
    grant all privileges on *.* to 'root'@'localhost' identified by 'root' with grant option;
    关键词解释:
    root'@'localhost:是用户
    root:是密码

    with grant option 这句话就是给root赋予了 给其他用户授权的权限,很关键,跟之前的语句,就差了这几个字符


    问题一:发现无密码条件下,没有授权的写权限
    The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
    解决方法:
    mysql> set global read_only=0;//(关掉新主库的只读属性)
    mysql>flush privileges;
    grant all privileges on *.* to 'root'@'localhost' identified by 'root' with grant option;#再次重新授权
    mysql>set global read_only=1;//(读写属性)
    mysql>flush privileges;
    mysql>exit;
    (注意刷新是必须项)


    第五步:重启数据库
    service mysqld stop
    报:
    Stopping mysqld: [ OK ]


    service mysqld start
    报:
    Starting mysqld: [ OK ]
    或者
    service mysqld restart

    原文链接:http://blog.csdn.net/nicajonh/article/details/52311402

  • 相关阅读:
    python --github 刷题
    http://www.rehack.cn/techshare/webbe/php/3391.html
    SQL 百万级数据提高查询速度的方法
    开学收好这 17 种工具 App,让你新学期学习更有效率
    Git文件常见下标符号说明
    TortoiseGit功能介绍
    gitlab图形化使用教程 (mtm推荐)
    gitlab 服务器的搭建与使用全过程(一)
    Git详解之一 Git实战
    Git使用基础篇
  • 原文地址:https://www.cnblogs.com/Kevin-1967/p/8522320.html
Copyright © 2011-2022 走看看