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 报错集

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

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

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

相关文章:

  • 2021-06-16
  • 2021-10-25
  • 2022-01-30
  • 2022-12-23
  • 2022-01-13
  • 2021-07-01
  • 2021-04-13
  • 2021-11-26
猜你喜欢
  • 2021-08-09
  • 2021-06-05
  • 2021-12-22
  • 2022-01-30
  • 2021-11-24
  • 2022-01-04
  • 2021-07-30
相关资源
相似解决方案