使用Hive自带的schematool工具升级元数据,也就是把最新的元数据重新写入MySQL数据库中。
执行以下命令
cd /usr/local/hive ./bin/schematool -initSchema -dbType mysql
出现The reference to entity "useSSL" must end with the ';' delimiter.
修改之前配置的hive-site.xml
原来:
<value>jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true&useSSL=false</value>
修改后:
<value>jdbc:mysql://localhost:3306/hive?createDatabaseIfNotExist=true&useSSL=false</value>
修改完再次执行
标签:useSSL,end,reference,hive,entity,报错,must From: https://www.cnblogs.com/liucaizhi/p/17872350.html