关注微信公共号:小程在线
关注CSDN博客:程志伟的博客
进入hive的bin目录下
cd ./hive/bin
执行初始化数据库
./schematool -initSchema -dbType mysql
Error: Syntax error: Encountered "<EOF>" at line 1, column 64. (state=42X01,code=30000)
org.apache.hadoop.hive.metastore.HiveMetaException: Schema initialization FAILED! Metastore state would be inconsistent !!
Underlying cause: java.io.IOException : Schema script failed, errorcode 2
Use --verbose for detailed stacktrace.
*** schemaTool failed ***
解决方法:
进入hive,查看hive默认的数据是default。
将初始化命令的mysql改成default。
./schematool -initSchema -dbType default;