hive --service metastore 出现的问题

Could not create ServerSocket on address 0.0.0.0/0.0.0.0:9083

执行命令jps

[email protected]:/usr# jps
1763 ResourceManager
1875 NodeManager
4854 Jps
1400 DataNode
1547 SecondaryNameNode
2300 RunJar
1292 NameNode

将Runjar kill掉,再重启hive --service metastore,就可以了

时间: 2024-08-05 03:18:51

hive --service metastore 出现的问题的相关文章

Hive的metastore

hive --service metastore 默认端口是9083 <property> <name>hive.metastore.uris</name> <value>thrift://hiveserver1:9083</value> </property> 在连接hive的客户端,如spark,可以只在hive-site.xml中配置这一个属性即可. 不需要配置mysql连接信息与用户密码信息,hiver server作为thr

【hive】——metastore的三种模式

Hive中metastore(元数据存储)的三种方式: 内嵌Derby方式 Local方式 Remote方式 [一].内嵌Derby方式 这个是Hive默认的启动模式,一般用于单元测试,这种存储方式有一个缺点:在同一时间只能有一个进程连接使用数据库. hive-site.xml 中jdbc URL.驱动.用户名.密码等的配置信息如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30

hive开启metastore服务

我们必须在hive服务端才能开启hive metastore服务 第一种方式 hive --service metastore -p 9083 & 第二种方式如果你在hive-site.xml里指定了hive.metastore.uris的port <property> <name>hive.metastore.uris</name> <value>thrift://hadoop003:9083</value> </property

Hive初步使用、安装MySQL 、Hive配置MetaStore、配置Hive日志《二》

一.Hive的简单使用 基本的命令和MySQL的命令差不多 首先在 /opt/datas 下创建数据  students.txt 1001 zhangsan 1002 lisi 1003 wangwu 显示有多少数据库: show databases; 使用某个数据库: use 数据库名称; 显示当前数据库下的表: show tables; 创建数据表 : create table student (id int,name string) ROW FORMAT DELIMITED FIELDS

hive0.13.1安装-mysql server作为hive的metastore

hive0.13.1在hadoop2.4.1伪分布式部署上安装过程 环境:redhat enterprice 6.5 +hadoop2.4.1+hive0.13.1+mysql单节点伪分布式部署 相关网址: hive官网安装指导:https://cwiki.apache.org/confluence/display/Hive/GettingStarted#GettingStarted-InstallingHivefromaStableRelease hive之metastore的三种保存方式:h

怎样使Ambari中的Hive Service输出Java dump文件

怎样使Ambari中的Hive Service输出Java dump文件 1,选择 “Hive” 2,点击“Configs”选项卡 3,滚动屏幕,选择“Advanced hive-env”, 在hive-env template 字段 注释原来的“export HADOOP_CLIENT_OPTS="-Xmx${HADOOP_HEAPSIZE}m $HADOOP_CLIENT_OPTS" 修改如下: #export HADOOP_CLIENT_OPTS="-Xmx${HADO

spark on hive 配置hive的metastore为mysql

<property><name>hive.metastore.uris</name><value></value><description>Thrift uri for the remote metastore. Used by metastore client to connect to remote metastore.</description></property> <property>&l

Hive的Metastore contains multiple versions

hive 客户端报错:Exception in thread "main" java.lang.RuntimeException: java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.metastore.HiveMetaStoreClient 咋一看以为是Mysql连接不上,结果发现Mysql正常 错误日志: 1 Exception in thread "main" jav

org.apache.hadoop.hive.service.HiveClient

今天调试spring-data-hive时,发现新版的hive-service.jar(1.2.1)已经没有HiveClient .而spring-data-hadoop2.2.0.RELEASE中仍在调用这个类!为什么会出现这样的问题呢? 还有一个疑问,类似这样的问题,在hive官网从哪可以找到这样的通知or提示呢?