当前位置:Gxlcms > mysql > mysql如何设置密码_MySQL

mysql如何设置密码_MySQL

时间:2021-07-01 10:21:17 帮助过:12人阅读

bitsCN.com
有很多方法:1.用root 进入mysql后mysql>set password =password('你的密码');mysql>flush privileges;
2.使用GRANT语句 mysql>grant all on *.* to 'root'@'localhost' IDENTIFIED BY '你的密码'with grant option ;mysql>flush privileges;
3.进入mysql库修改user表mysql>use mysql;mysql>update user set password=password('你的密码') where user='root'; mysql>flush privileges;
bitsCN.com

人气教程排行