MySQL的登陆密码保存在内建的名为MySQL的数据库中到表格user中;
所以,在登陆到MySQL之后,
使用:
use MySQL
语句选定该数据库,
通过update关键字修改数据即可;
update user set authentication_string=password("newpassword") where user=‘yourusername‘;
修改好之后有如下提示:
Rows matched: 1 Changed: 1 Warnings: 1使用:show warnings;可以检查warnings.最后:flush privileges;刷新权限就可以了.
原文地址:https://www.cnblogs.com/xjyjrl/p/9576508.html
时间: 2024-10-23 00:57:21