mysql用户管理
创始人
2025-07-09 12:48:37
0

1、新建用户

create user username@host  identified by 'password';

例如:

create user root@10.110.21.31 identified by '1234';


2、删除用户

drop user username@host;

例如:

drop user root@10.110.21.31;


3、修改用户密码

alter user user() identified by 'password';

set password for username@host='newpassword';

例如:

alter user user() identified by '123456';

set password for root@10.110.21.31='123456';


4、授权

grant privileges on database.table to username@host;

例如:

grant all [privileges] on dt.* to root@10.110.21.31;

grant all on *.* to 'root'@'%';


5、撤消授权

revoke privileges on database.table from username@host;

例如:

revoke all on dt.* from root@10.110.21.31;


6、查看授权

show grants for username@host;

例如:

show grants for root@10.110.21.31;


7、刷新权限

flush privileges;



相关内容

热门资讯

centos7 LVM(逻辑卷... 一、LVM简介 LVM是 Logical Volume Manager(逻辑卷管理)的简写,它...
centos7支持中文 1、使用locale命令查看当前使用的语言2、使用locale -a 查看安装的语言包,如果没有中文...
vcenter因证书问题无法上... 解决方法:导入root CA证书。主要操作步骤如下:1、下载root CA证书,并解压。2、右击5a...
redis出现报错:Error... 问题:redis出现报错:Error: 磁盘在使用中,或被另一个进程锁定解决方法1、在配置文件中修改...
mariadb galera ... mariadb server下载地址:https://mariadb.org/download/?...
mariadb galera ... mariadb server下载地址:https://mariadb.org/download/?...
mysql数据库导入导出 导出mysqldump --default-character-set=utf8 -u用户名 -p密...
nginx配置实例:只允许内部... #配置清单location / { deny 192.168.1.1; ...
centos7上安装git服务... 一、安装git1、安装依赖库#yum install openssl-devel curl-deve...
esxi主机多链路设置注意事项 esxi主机多链路设置要在设置管理IP之前。否则删除链路后会出现无法连接esxi主机。