1.在命令行输入mysql -u root –p,输入密码,或通过工具连接数据库时,出现下面的错误信息;
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
解决方案:
vi /etc/my.cnf #编辑mysql配置文件
#在[mysqld]下加入一行, wq 保存文件并重启mysql服务(systemctl restart mysqld)
skip_grant_tables
#重启服务后输入任意密码即可进入
mysql -uroot -p
#输入任意密码即可
2.进入mysql后修改 root密码 报错:
#mysql的配置文件有skip-grant-tables,所以不能执行修改密码
ERROR 1290 (HY000): The MySQL server is running with the --skip-grant-tables option so it cannot execute this statement
#修改的mysql密码不符合强度要求,密码需要为8位(大写+小写+数字+字符)
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
#密码置空 刷新权限表,修改密码 。
mysql> use mysql;
mysql> update user set authentication_string='' where user='root';
mysql> flush privileges;
mysql> alter user 'root'@'localhost' identified by 'Hello_12' password expire never;