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

给Mysql添加远程访问权限的方法

程序员文章站 2024-02-28 23:24:22
user:myuser  pwd:mypassword 从任何主机连接到mysql服务器 grant all privileges on *.* to ide...

user:myuser  pwd:mypassword 从任何主机连接到mysql服务器

grant all privileges on *.* to identified by 'mypassword' with grant option;

user:myuser  pwd:mypassword 从192.168.1.3连接到mysql服务器

grant all privileges on *.* to identified by 'mypassword' with grant option;