当前位置: 代码迷 >> MySQL >> mysql 创建用户、 受权
  详细解决方案

mysql 创建用户、 受权

热度:213   发布时间:2016-05-05 16:45:17.0
mysql 创建用户、 授权

?

//创建用户

create user 'hive'@'%' identified by 'hive';

?

//授权

grant all privileges on *.* to 'hive'@'%' with grant option;

flush privileges;

  相关解决方案