mysql创建用户,并授予权限
作者:互联网
1.创建用户
(1)创建
默认用户为root,创建新用户用:create user ‘用户名’@‘IP地址’ identified by '密码'。
例如:create user ‘XXX’@‘192.168.43.1’ identified by '111111';(用户为XXX,密码为111111只能在IP为192.168.43.1机器上登录)
create user ‘XXX’@‘192.168.%’ identified by '111111';(可以在前缀为192.168的任意机器上登录,%表示任意)
create user ‘XXX’@‘%’ identified by '111111';(可以在任意机器上登录)
下面是操作过程:首先打开客户端命令行——密码登录——使用mysql数据库——mysql数据库中的user表存放用户,使用create user ‘用户名’@‘数据库所在IP’ identified by '密码'创建——select user ,host from user 查看
2.授权:
授权:grant all privileges on 数据库 to '用户名'@'IP地址';
撤销权限:revoke all privileges from 数据库 to '用户名'@'IP地址';
all privileges指除了grant之外的所有权限,也可以自己设置权限
例如:grant insert on world.* to '用户名'@'IP地址';(只能对world数据库做插入操作,world.*表示对world中所有表)
参考链接:https://blog.csdn.net/qq_43332829/article/details/123382600
标签:用户名,create,identified,授予,user,mysql,world,权限,数据库 来源: https://www.cnblogs.com/zlshtml/p/16611794.html