张文保的博客
张文保 · Paul Zhang

Engineering the Future

MySQL

MySQL创建用户、授权、撤销权限、删除用户命令

一、创建用户

mysql -u root -p

create user 'test'@'localhost' identified by '123';

create user 'test'@'192.168.7.22' identified by '123';

create user 'test'@'%' identified by '123';

 

注意:此处的"localhost",是指该用户只能在本地登录,不能在另外一台机器上远程登录。

如果想远程登录的话,将"localhost"改为"%",表示在任何一台电脑上都可以登录。也可以指定某台机器可以远程登录。

如果报错:出现ERROR 1364 (HY000): Field 'ssl_cipher' doesn't have a default value

解决方法:

打开my.ini,查找

sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

 

修改为

sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION"

 

然后重启MYSQL

二、授权

mysql -u root -p

 

使用命令:

grant privileges on databasename.tablename to 'username'@'host' identified by 'pwd';
grant all on quant.* to 'test'@'localhost' identified by '123';
flush privileges;

 

三、撤销权限

mysql -u root -p

 

使用命令:

revoke privileges on databasename.tablename from 'username'@'host';
flush privileges;

 

四、删除用户

mysql -u root -p

使用命令:

drop user 'test'@'host';

 

相关文章
本文标题:《MySQL创建用户、授权、撤销权限、删除用户命令》
网址:https://zhangwenbao.com/mysql-creates-users-authorizes-revoke-privileges-and-removes-user-commands.html
作者:张文保
发布时间:2017-03-10
许可协议:CC BY-NC-SA 4.0
发表新评论
SSL安全认证