进入mysql执行命令
create user 'hive'@'localhost' identified by 'hive'; (创建hive用户)
grant all privileges on *.* to 'hive'@'localhost' with grant option;(赋予权限)
flush privileges;(刷新权限)
进入mysql执行命令
create user 'hive'@'localhost' identified by 'hive'; (创建hive用户)
grant all privileges on *.* to 'hive'@'localhost' with grant option;(赋予权限)
flush privileges;(刷新权限)