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

mysql数据库使root可以远程访问:

程序员文章站 2022-06-04 15:21:49
...
 mysql数据库使root可以远程访问:

mysql -u root                                                         #进入mysql管理
use mysql;                                                            #使用mysql数据库
update user set host = '%' where user = 'root' and host='localhost';  #修改登陆主机为任意位置%
grant all privileges  on *.* to root@'%' identified by "key000000";   #赋予所有权限并设置密码
delete from user where host != "%";                                   #删除所有其他用户,如匿名用户
flush privileges;                                                     #刷新权限