出错
提示:DataGrip要连接hive需要先启动hiveserver2
Datagrip连接hive报错:
The specified database user/password combination is rejected: org.apache.hadoop.ipc.RemoteException:User: root is not allowed to impersonate root
解决方法
在/opt/module/hadoop/etc/hadoop
下的core-site.xml
中确认以下内容与连接信息无误
<!-- 配置该root(superUser)允许通过代理访问的主机节点 -->
<property>
<name>hadoop.proxyuser.root.hosts</name>
<value>*</value>
</property>
<!-- 配置该root(superUser)允许通过代理用户所属组 -->
<property>
<name>hadoop.proxyuser.root.groups</name>
<value>*</value>
</property>
<!-- 配置该root(superUser)允许通过代理的用户-->
<property>
<name>hadoop.proxyuser.root.users</name>
<value>*</value>
</property>
连接成功
测试连接,绿色打勾表示测试连接成功