修改MySQL数据库密码

xiaoxiao2021-02-28  30

新装的mysql默认是没有密码的,下面我们直接root用户进入mysql

有很多方法: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;
转载请注明原文地址: https://www.6miu.com/read-2300315.html

最新回复(0)