首页 > 技术文章 > linux系统下访问window本地数据库

yyfyl 2020-03-05 17:51 原文

例如你在mysql下创建的数据库名称是test

cmd下

use test ;

grant all privileges on *.* to root@'%' identified by "密码";(授予权限)

flush privileges;(刷新)

推荐阅读