版本5.x
//给root开通远程访问权限
grant all privileges on *.* to 'root'@'%' identified by '006164';
//让设置生效
flush privileges;
版本8.x
//查询user表
select host,user,authentication_string,plugin from user;
//更新root的权限
update mysql.user set host = "%" where user = "root";
或
//和上面效果一样
CREATE USER 'root'@'%' IDENTIFIED BY '006164';
注:因为hive的元数据需要存储到mysql中。所以建议在windows中安装mysql,建议使用mysql5.x的版本。