mysql修改root密码
Posted wtxkui
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql修改root密码相关的知识,希望对你有一定的参考价值。
mysql8.0.16
登录时出现ERROR 1130 (HY000): Host ‘localhost‘ is not allowed to connect to this MySQL server
出现此错误时,是root用户权限问题,客户端无法访问服务器
判断本次出现问题原因为:安装mysql后修改密码,修改密码使用了明文密码导致问题出现
update mysql.user set authentication_string=‘password‘ where user=‘root‘;
使用此方法修改密码就会出现此问题,正确修改密码方式如下
1、客户端无法登录mysql服务器,需要越权登录
mysqld --console --skip-grant-tables --shared-memory
2、越权可以直接通过mysql命令直接登录,然后进入user表将root用户密码修改为空,可使用update命令
3、退出mysql关闭1中打开的console,重启mysql,重新修改密码
alter user ‘root‘@‘localhost‘ identified by ‘password‘//此方法修改后的密码为加密的
网上有些修改密码方式为:
update mysql.user set authentication_string=password(‘password‘) where user=‘root‘;
尝试后无效,报错,猜测是password方法已经不被使用了
以上是关于mysql修改root密码的主要内容,如果未能解决你的问题,请参考以下文章
MySQL——修改root密码的4种方法(以windows为例)