- 启动关闭MySQL
net start mysql net stop mysql
- 修改用户密码
alter user 'root'@'localhost' identified by '123456';
- 登录
mysql -u root -p
-u 后是用户名,-p 后是密码,也可直接回车后按指示输入密码。
net start mysql net stop mysql
alter user 'root'@'localhost' identified by '123456';
mysql -u root -p
-u 后是用户名,-p 后是密码,也可直接回车后按指示输入密码。