2018-11-29

mysql 的密码如何更改

1、停掉服务

2、mysqld_safe --skip-grant-tables  --skip-networking  &  打入   ,出于安全考虑一般打上 --skip-networking ,是为了并开启网络的连接,也就是3306的端口,此网路是实现在本地之上

3、另开终端,mysql -uroot  ,  可以进入数据库

4、update mysql.user set authentication_string=password('你想修改的密码')  where user='root';

5、成功更改密码

你可能感兴趣的:(2018-11-29)