首页 > 数据库技术 > 详细

linux mysql5.7 密码相关问题

时间:2017-01-20 21:54:44      阅读:251      评论:0      收藏:0      [点我收藏+]

ERROR 1819 (HY000): Your password does not satisfy the current policy requirements

 select @@validate_password_length;

mac mysql error You must reset your password using ALTER USER statement before executing this statement.

SET PASSWORD = PASSWORD(‘your new password‘);

flush privileges;

 

新增用户并授权

 

use mysql; Grant all on *.* to ‘root‘@‘%‘ identified by ‘root用户的密码‘ with grant option;

flush privileges;

 

linux mysql5.7 密码相关问题

原文:http://www.cnblogs.com/chenkg/p/6327366.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!