工作中经常会遇到使用mysql数据库的时候密码明明是正确的,但是mysql -uroot -p123456提示“ERROR 1044 (42000): Access denied for user ‘’@‘localhost’ to database ‘password’”,原因是因为myslq库中的user表缺少一个root指向 localhost的数据项,只有一个root指向host,所以无法使root账户登录mysql。
解决方法:使用–skip-grant-tables
/usr/bin/mysqld_safe --skip-grant-tables
然后再使用 mysql即可跳过密码登录
而后再输入:
update user set host='localhost' where user='root' and host='%'; flush privileges;
重启mysql后即可。
注:可在myql命令行中输入use mysql;select user,host,password from user where user=‘root’;查看是否有localhost。