MySQL-修改数据库密码

MySQL-修改数据库密码

将密码设置为LOW模式,6位
解决办法:

  • 1、show variables like “validate_password%”;
  • 2、set global validate_password_policy=LOW;
  • 3、set global validate_password_length=6;
  • 4、alter user “root”@“127.0.0.1” identified by “123456”;
发布了44 篇原创文章 · 获赞 0 · 访问量 1414

猜你喜欢

转载自blog.csdn.net/weixin_44872254/article/details/105425645
今日推荐