The element type "description" must be terminated by the matching end

一、hive0-10 版本使用cp hive-default.xml.properties hive-site.xml后,生成新的配置文件hive-site.xml后,运行hive 命令后报下面的错误:

hive-site.xml:180:3: The element type "description" must be terminated by the matching end-tag "".
Exception in thread "main" java.lang.RuntimeException: org.xml.sax.SAXParseException: The element type "description" must be terminated by the matching end-tag "".

 问题产生的原因是:hite-site.xml 中缺少 标签。当你使用命令sudo vim hite-site.xml 打开文件,想要找到在哪里加 时,你是不是傻眼了,这个文件有上百行呢。要是一行行的找下去...

 嘿嘿....,仔细看错误信息,信息中已提示180行,这下好了。我们使用命令:180G,光标直接跳转到 180行,加入 。再次运行hive ,这次报 end-tag ,使用上面的方法可以很轻松的解决问题。

二、你的问题解决了吗?

你可能感兴趣的:(数据库,java,综合)