A机器上安装了MySQl Server,想在B机器上远程连接。不想,收到拒绝提示。搜索之,时A机器上MySQL未授权给B机器远程连接权限。
1.直接法,即将MySQL库中user表中新增一个新用户test,密码为test,然后使用授权语句授之一定的权限
grant 权限 on 数据库名.表名 to 用户名@登录主机 identified by “用户密码”
A机器上,操作指令如下:
1>use mysql
2>grant all on *.* to [email protected] identified by "test"
2.授权法,即将mysql库中user表中host字段的值设为“%”,表示任何客户端机器上都能以test用户登录(接1中user表)
A机器上,操作指令如下:
1>use mysql
2>update user set host = "%" where host = "10.10.10.10"
时间: 2024-10-07 05:28:23