首页 > 数据库 > MySQL > 正文

MySQL限制IP网段范围从远程访问的方法

2022-07-31 18:43:02
字体:
来源:转载
供稿:网友
        mysql>grant select,insert,update,create on test.* to test@'192.168.8.%' identified by '123456';
 
        mysql>grant select,insert,update,create on test.* to test@'192.168.9.%' identified by '123456';
 
        mysql>grant select,insert,update,create on test.* to test@'192.168.20.%' identified by '123456';
 
        上面的语句表示将test数据库的所有权限授权给test这个用户,只允许test用户在192.168.8/9/20这三个网段的IP范围进行远程登陆,并设置test用户的密码为123456
 
        刷新权限表使其设置生效:
        mysql> flush privileges;

(编辑:错新网)

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表