ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[TOC] ## mysqladmin 修改密码 ``` mysqladmin -uroot -p123456 password 123 //-p为旧密码 password 为新密码 ``` ## –skip-grant-tables 跳过权限表 修改/忘记 密码 可解决:"Access denied for user 'root'@'localhost' (using password: NO/YES)" 错误 1. 关闭 mysqld 服务 1. `mysqld –skip-grant-tables` 跳过权限表 2. 修改密码 ``` > mysql mysql > use mysql; // mysql5.7 以下下 mysql > update user set password=password("123") where user="root" ```