mysql5.7创建用户 分配权限

Posted uzxin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql5.7创建用户 分配权限相关的知识,希望对你有一定的参考价值。

创建用户(%表示随处可登录,localhost表示只能本地登录

create user ‘username‘@‘%‘ identified by ‘password‘;

 

分配权限

grant all privileges on tableName.* to ‘username‘@‘%‘;

 

刷新权限

flush privileges;

 

如果报错ERROR 1290 (HY000): The mysql server is running with the --skip-grant-tables option so it cannot execute this statement

先执行flush privileges;再进行操作

以上是关于mysql5.7创建用户 分配权限的主要内容,如果未能解决你的问题,请参考以下文章

Mysql5.7.21安装文档

MySQL5.7主从复制-异步复制搭建

mysql5.7数据库删除用户及其权限 drop user ‘root‘@‘%‘; flush privileges;

Mysql 用户权限管理

ubuntu上源码编译安装mysql5.7.27

mysql5.7源码安装