码迷,mamicode.com
首页 > 数据库 > 详细

Linux-MySQL用户管理

时间:2018-12-06 23:22:20      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:图片   -o   com   mys   用户管理   授权   shadow   passwd   mysql   

mysql>grant all on . to ‘user1‘@‘来源ip地址‘ identified by ‘密码‘; #定义user1,来源ip 进行登录,所有的库都有权限,或者mysql . 指定一个mysql的库
mysql>grant all on . to ‘user1‘@‘%‘ identified by ‘密码‘; #%代表所有的ip地址

grant all on . to ‘用户‘ identified by ‘密码‘; #grant授权。all代表所有。

grant SELECT,UPDATE,INSERT on db1.* to ‘user2‘@‘192.168.133.1‘ identified by ‘passwd‘; #针对权限进行授权。SELECT,UPDATE,INSERT 针对db1的库,所有的表给user2,来源ip地址192.168.133.1

grant all on db1.* to ‘user3‘@‘%‘ identified by ‘passwd‘; #针对db1的库,所的表给用户user3,ip地址为所有

show grants; #查看当前用户的授权

show grants for user2@192.168.133.1; #查看指定用户的授权。 用户uesr2 来源ip为192.168.133.1。ip地址可以增加。
技术分享图片

Linux-MySQL用户管理

标签:图片   -o   com   mys   用户管理   授权   shadow   passwd   mysql   

原文地址:http://blog.51cto.com/13451715/2327260

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!