1.登录mysql ,输入命令mysql -u root -p
指定 root 用户登录 MySQL,输入后按回车键输入密码。如果没有配置环境变量,请在 MySQL 的 bin 目录下登录操作。
2.1
输入指令 set password for username @localhost = password(newpwd);
例如
set password for root@localhost = password('123');
注 : 如果报错 You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'password(fdk1995)' at line 1
可能原因是 数据库版本较新,发生了改变,改用
SET PASSWORD FOR '用户名'@'主机名' = '新密码';
例如:
set password for root@localhost = '123';