博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql 用户管理
阅读量:5325 次
发布时间:2019-06-14

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

 

-- 1 创建用户create user latiny@'%' identified by '123456';create user latiny@'localhost' identified by '123456';create user latiny@'192.168.201.1' identified by '123456';flush privileges;-- 2 查看用户use mysql;select    * from    userwhere    user = 'latiny'and    (    host = '%'    or    host = 'localhost'    or    host = '92.168.201.1');-- 3 删除用户drop user latiny@'192.168.201.1';drop user latiny@'localhost';drop user latiny@'%';-- 4 创建数据库create database if not exists test2 default charset utf8 collate utf8_general_ci;-- 5 将数据库授权给用户-- 全部授权grant all on test2.* to latiny@'192.168.201.1';flush privileges;-- 部分授权grant select, insert, delete, update, drop on test2.* to latiny@'192.168.201.1';flush privileges;-- 6 将数据库所有权限赋给用户,该用户相当于管理员grant all on *.* to latiny@'%';flush privileges;-- 7 查询用户在某个域具有的权限show grants for latiny@'192.168.201.1';show grants for latiny@'%';show grants for latiny@'localhost';-- 8 回收权限revoke all on test2.* from latiny@'192.168.201.1';flush privileges;revoke select, insert, delete, update, drop on test2.* from latiny@'192.168.201.1';

 

9 权限说明

  

 

  管理权限(如 super, process, file等)不能够指定某个,on后面必须跟 *.*

  truncate权限就是create+drop,这点需要注意。

 

10 修改用户密码

update user set password=password('123456') where user='root' and host in ('%', 'localhost', '92.168.201.1');FLUSH PRIVILEGES;

 

转载于:https://www.cnblogs.com/Latiny/p/7806766.html

你可能感兴趣的文章
当心JavaScript奇葩的逗号表达式
查看>>
App Store最新审核指南(2015年3月更新版)
查看>>
织梦MIP文章内容页图片适配百度MIP规范
查看>>
点击复制插件clipboard.js
查看>>
[Kali_BT]通过低版本SerialPort蓝牙渗透功能手机
查看>>
C语言学习总结(三) 复杂类型
查看>>
HNOI2018
查看>>
【理财】关于理财的网站
查看>>
Ubunt中文乱码
查看>>
《当幸福来敲门》读后
查看>>
【转】系统无法进入睡眠模式解决办法
查看>>
省市县,循环组装,整合大数组
查看>>
stm32中字节对齐问题(__align(n),__packed用法)
查看>>
like tp
查看>>
posix多线程有感--线程高级编程(线程属性函数总结)(代码)
查看>>
spring-使用MyEcilpse创建demo
查看>>
DCDC(4.5V to 23V -3.3V)
查看>>
kettle导数到user_用于left join_20160928
查看>>
activity 保存数据
查看>>
typescript深copy和浅copy
查看>>