FAILED: SemanticException org.apache.hadoop.hive.ql.metadata.HiveException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.metadata.SessionHiveMetaStoreClient
先看看你安装mysql节点上有没有驱动 /export/servers/hive-1.1.0-cdh5.14.0/lib 中有没有
如果有还是报错 接着下面的操作
重新配置一下远程连接 grant all privileges on . to ‘root’@’%’ identified by ‘123456’ with grant option;
刷新 flush privileges;
设置root用户链接mysql的密码 update user set password=password(‘123456’) where user=‘root’;
刷新 flush privileges;
然后启动hive
show databases;
】
这样就OK了
喜欢点个赞吧 .