mysql> update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';mysql> flush privileges;mysql> quit;
特别提醒注意的一点是,新版的mysql数据库下的user表中已经没有Password字段了,而是将加密后的用户密码存储于authentication_string字段
mysql> update mysql.user set authentication_string=password('123qwe') where user='root' and Host = 'localhost';mysql> flush privileges;mysql> quit;
特别提醒注意的一点是,新版的mysql数据库下的user表中已经没有Password字段了,而是将加密后的用户密码存储于authentication_string字段
本文标题:mysql 5.7 修改密码
本文链接:https://www.haomeiwen.com/subject/olitbhtx.html
网友评论