Mysql忘记密码与修改密码操作

mysql 安装成功后如何设置密码?

按照安装教程安装成功以后,是默认没有密码的。

命令行输入:

mysql -u root -p

即可成功登录,提示 welcome to the  mysql monitor!的字样即表示登录成功。

关闭当前命令行,重启cmd.exe

输入mysqladmin -u root -p password

回车,

出现“Enter password:”,直接回车,未设置密码时默认没有密码,

接着出现“New password:”输入新的密码,回车即可,

接着出现“Confirm new password:”确认密码,回车即可。

修改完密码以后,下次重新登录是,

键入mysql -u root -p即可,接着输入设置后的密码即可登录。

 

如果可以进去,Mysql没有密码

update mysql.user set authentication_string=password('新密码') where user='root' and Host ='localhost';

先使用sudo mysql -uroot -p 键入    如果打开报错

ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY '新密码';

你可能感兴趣的:(语法知识)