Error: Could not open connection to jdbc:hive2://master64:10000: java.net.ConnectException: Connecti

客户端访问hiveserver2服务时:Error: Could not open connection to jdbc:hive2://master64:10000: java.net.ConnectException: Connection refused (state=08S01,code=0)

客户端访问hiveserver2服务时:这里写图片描述

出现如上报错。


解决方法

一、检查配置文件


<property>
  <name>hive.server2.long.polling.timeoutname>
  <value>5000value>
property>

<property>
  <name>hive.server2.thrift.portname>
  <value>10000value>
property>


<property>
  <name>hive.server2.thrift.bind.hostname>
  <value>master64value>
property>'''

尤其注意时间是5000,原配置文件中会多个L,需要去掉;
还有一种可能是以上配置文件内容重复

二、服务器没开
可能你刚才开过服务器。但是断了
需要开启服务器:
启动服务:
bin/hive –service hiveserver2


通过客户端访问hiveserver2服务:
$ bin/beeline

beeline>!connect jdbc:hive2://192.168.17.129:10000    //如果没在host文件改过ip与主机映射,直接写ip;如果该过,可以直接写主机名
beeline>登录使用操作系统的一般用户登录(bigdata)

你可能感兴趣的:(hive,hive)