则是远程访问权限不正确,先选择数据库,查看一下再更改: mysql> use mysql; Database changed
找到bin目录:mysqld --skip-grant-tables 重新在开一个cmd窗口 找到bin目录:mysql就进入登陆状态了 5.7.22修改密码语句:update user set authentication_string=password('123456') where user='root' and host='localhost'; 5.6.修改密码语句:update user set password=password('123456') where user='root' and...