mysql8.0.15修改密码,开启远程连接

2019-07-31  本文已影响0人  yundd

1.修改密码

ALTER user 'root'@'localhost' IDENTIFIED BY 'password' 

2.开启远程连接

mysql> use mysql;
Database changed
mysql> grant all privileges  on *.* to root@'%' identified by "password";
Query OK, 0 rows affected (0.00 sec)

mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
上一篇下一篇

猜你喜欢

热点阅读