博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
(九)MySQL用户和权限管理
阅读量:5341 次
发布时间:2019-06-15

本文共 2368 字,大约阅读时间需要 7 分钟。

(1)用户管理

1)登录和退出mysql

例:

mysql -h192.168.111.150 -P3306 -uroot -predhat mysql -e 'select user,host,authentication_string from mysql.user'
-h 指定主机名 [默认为localhost]
-P MySQL端口 [默认为3306]
-u 指定用户名 [默认为root]
-p 指定登录密码 [默认为空]
此处mysql为指定登录的数据库
-e 接SQL语句

2)创建用户

方法一:create user语句创建

create user user1@'localhost' identified by 'password';
方法二:grant 语句创建
grant all on . to 'user1'@'localhost' identified by 'password';
grant all on blog.* to 'user2'@'%' identified by 'password';

3)删除用户

方法一:drop user

drop user 'user1'@'localhost';
方法二:delete语句删除
delete from mysql.user where user='user1' and host='localhost';
flush privileges;

4)修改用户密码

root 用户修改自己的密码

方法一:#mysqladmin -uroot -p'123' password 'new_password' //123为旧密码

方法二:update mysql.user set authentication_string=password('new_password') where user='root' and host='localhost'; flush privileges
方法三 :set password=password('new_password');

root修改其他用户密码

方法一:set password for user3@'localhost'=password('new_password');

方法二:update mysql.user set authentication_string=password('new_password') where user='root' and host='localhost'; flush privileges;

普通用户修改自己密码

方法:set password=password('new_password');

(2)权限管理

1)权限应用级别

user(全局) ---> db(数据库级别)--->tables_priv(表级别)---->columns_priv(字段级别)

所有用户名和密码信息都是user表中,全局用户的权限在user表中;库级别的用户权限信息在db表中

2)授权语法格式以及授权

grant 权限列表 on 库名.表名 to '用户名'@'客户端主机' [identified by '密码' with option参数];

权限列表:   、    all 所有权限    select,update数据库.表名:    *.*  所有库下的所有表    web.*   web库下的所有表    web.stu_info  web库下的stu_info表客户端主机:    % 所有主机    192.168.2.%  192.168.2.0网段的所有主机    192.168.2.18    指定主机    localhost       指定主机with_option参数:    grant option 授权选项,其他用户可以授权    max_queries_per_hour :定义每小时允许执行的查询数    max_updates_per_hour :定义每小时允许执行的更新数    max_connections_per_hour :定义每小时可以建立的连接数    max_user_connections :定义单个用户同时可以建立的连接数

示例

grant all on . to admin1@'%' identified by 'new_password' with grant option;

grant all on web.* to admin2@'%' identified by 'new_password';

3)查看权限

show grants\G \用户查看自己的权限

show grants for 'admin1'@'%'\G \管理员查看其他用户的权限

4)revoke回收权限

语法:revoke 权限列表 on 库.表 from 用户名@'客户端主机';

示例

revoke insert,delete on . from admin1@'%'; \回收部分权限

revoke all privileges on . from admin2@'%'; \回收所有权限
revoke all privileges,grant option on . from admin2@'%'; \回收所有权限

5)删除用户

5.6之前需要先把权限去掉在删除用户:revoke all privilege drop user

5.7之后可以直接删除用户:drop user

转载于:https://www.cnblogs.com/lovelinux199075/p/8922149.html

你可能感兴趣的文章
composer 安装laravel
查看>>
8-EasyNetQ之Send & Receive
查看>>
Android反编译教程
查看>>
java重写LinkedList
查看>>
zTree节点重叠或者遮挡
查看>>
List<string> 去重复 并且出现次数最多的排前面
查看>>
js日志管理-log4javascript学习小结
查看>>
Android之布局androidmanifest.xml 资源清单 概述
查看>>
How to Find Research Problems
查看>>
Linux用户管理
查看>>
数据库第1,2,3范式学习
查看>>
《Linux内核设计与实现》第四章学习笔记
查看>>
使用iperf测试网络性能
查看>>
struts2入门之准备工作
查看>>
从C语言的弱类型属性说起
查看>>
图片的显示隐藏(两张图片,默认的时候显示第一张,点击的时候显示另一张)...
查看>>
Docker 安装MySQL5.7(三)
查看>>
python 模块 来了 (调包侠 修炼手册一)
查看>>
关于CSS的使用方式
查看>>
本地MongoDB服务开启与连接本地以及远程服务器MongoDB服务
查看>>