# 查看用户拥有的权限
select * from mysql.user where user='syj'\G
# 授权的必要条件:需要登录root用户进行授权 #
# 授权syj所有的权限,但是只能在本地登录数据库操作
grant all privileges on *.* to 'syj'@'localhost' identified by 'passwd';
flush privileges;
# 授权syj所有的权限,允许在192.168.1.1网段内登录操作
grant select on *.* to 'syj'@'192.168.1.%' identified by 'passwd';
flush privileges;
# 授权syj只有select所有库的权限,但是只能在192.168.1.1网段内登录操作
grant select on *.* to 'syj'@'192.168.1.%' identified by 'passwd';
flush privileges;
# 授权用户报错
ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
pastingERROR 1819 (HY000): Your password does not satisfy the current policy requirements
# 解决方法
set global validate_password_policy=LOW;
mysql 设置允许网段连接 mysql网段授权
转载本文章为转载内容,我们尊重原作者对文章享有的著作权。如有内容错误或侵权问题,欢迎原作者联系我们进行内容更正或删除文章。
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
跨网段通信的完整过程
了解基础知识
ip地址 数据帧 封装