欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

MySql 授权登录

程序员文章站 2023-12-24 17:25:57
...

MySql 授权登录

 

mysql -u root
use mysql;
update user set password=PASSWORD("123456") where user='root';
grant all on *.* to root@"%" identified by "123456"; 

 

上一篇:

下一篇: