hive
tc_lwh
有趣的皮囊
展开
-
hive后台服务启动和客户端启动
需要保证数据库和hive可以正常启动 自己写了个shell脚本,启动命令懒得记了 #!/bin/sh read -p 'please input your hostname:' NAME nohup bin/hiveserver2 1>/dev/null 2>&1 & /root/apps/hive-1.2.1/bin/beeline -u...原创 2018-11-09 21:43:56 · 1338 阅读 · 1 评论 -
hive显示列名
set hive.cli.print.header=true;原创 2018-11-01 20:18:38 · 402 阅读 · 0 评论 -
hive报错编写自定义函数导入依赖报错 Missing artifact jdk.tools:jdk.tools:jar:1.6
少了一个jar包 <dependency> <groupId>jdk.tools</groupId> <artifactId>jdk.tools</artifactId> <version>1.6</version> <scope>system</原创 2018-11-12 22:22:34 · 459 阅读 · 0 评论 -
HTTP ERROR 404 Problem accessing /hwi/authorize.jsp. Reason: HWI HIVE
执行hive --service hwi时,客户端没报错 浏览器打开http://host:port/hwi时,显示一个web目录,点击web目录后,就出现: HTTP ERROR 404 Problem accessing /hwi/authorize.jsp. Reason: /hwi/authorize.jsp 原因是hive-hwi-1.2.2.war的问题 一是看看你的包版本号对不对 ...原创 2019-04-02 09:49:47 · 1174 阅读 · 0 评论