hive 报错集

1.MetaException(message:Hive metastore database is not initialized. Please use schematool (e.g. ./sch

配置好hive,第一次使用时,可能会出现以下错误: 
MetaException(message:Hive metastore database is not initialized. Please use schematool (e.g. ./schematool -initSchema -dbType …) to create the schema. If needed, don’t forget to include the option to auto-create the underlying database in your JDBC connection string (e.g. ?createDatabaseIfNotExist=true for mysql)) 

è¿éåå¾çæè¿°

这是由于没有初始化数据库,生成元数据。 
需要执行以下指令(在hive的bin目录下执行) 
./schematool -initSchema -dbType mysql 

最后一个参数为hive存放元数据所使用的数据库,我用的是mysql。如果使用derby,将最后的参数改为derby就可以了。

在使用hive1.x时不记得遇到过,在配置2.1.0时出现。

发布了48 篇原创文章 · 获赞 94 · 访问量 5万+

猜你喜欢

转载自blog.csdn.net/a458383896/article/details/89295458