启动Hive报错

 Exception in thread "main" java.lang.RuntimeException: 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)

解法方案:

执行:schematool -dbType mysql -initSchema

原文地址:https://www.cnblogs.com/watchfree/p/5767854.html