码迷,mamicode.com
首页 > 数据库 > 详细

ERROR 1044 (42000): Access denied for user 'root'@'localhost' to database 'mysql'

时间:2015-08-30 17:21:02      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

mysql> use mysql
ERROR 1044 (42000): Access denied for user ‘root‘@‘localhost‘ to database ‘mysql‘
mysql> exit
Bye
[root@testtest ~]# service mysqld stop
Stopping mysqld:                                           [  OK  ]
[root@testtest ~]# mysqld_safe --user=mysql --skip-grant-tables --skip-networking &

[root@testtest ~]# mysql -u root -p -hlocalhost
Enter password:

mysql> use mysql

mysql> SELECT host,user,password,Grant_priv,Super_priv FROM mysql.user;

mysql> UPDATE mysql.user SET Grant_priv=‘Y‘, Super_priv=‘Y‘ WHERE User=‘root‘;

mysql> FLUSH PRIVILEGES;

mysql> GRANT ALL ON *.* TO ‘root‘@‘localhost‘;

mysql> GRANT ALL ON *.* TO ‘root‘@‘cn.cn.cn.cn‘;

mysql> GRANT ALL ON *.* TO ‘root‘@‘245.245.245.245‘;

mysql> GRANT ALL ON *.* TO ‘root‘@‘127.0.0.1‘;

mysql> FLUSH PRIVILEGES;


mysql> quit
Bye
[root@testtest ~]# service mysqld start

restart Linux/OS

ERROR 1044 (42000): Access denied for user 'root'@'localhost' to database 'mysql'

标签:

原文地址:http://www.cnblogs.com/emanlee/p/4771070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!