?
//创建用户
create user 'hive'@'%' identified by 'hive';
?
//授权
grant all privileges on *.* to 'hive'@'%' with grant option;
flush privileges;
?
//创建用户
create user 'hive'@'%' identified by 'hive';
?
//授权
grant all privileges on *.* to 'hive'@'%' with grant option;
flush privileges;