3.将连接mysql的驱动包放到hive的lib目录下 cp mysql-connector-java.jar ${HIVE_HOME}/lib/ 1. 三、使用schematool 初始化hive的元数据 schematool -initSchema -dbType mysql 1. 四、检查数据库 use hive show tables; 1. 2. 3. 我们会看到存放hive元数据的数据库已经生成了很多表,到这里,就表示你hive...
今天因为mysql服务不知道怎么崩了重新下载mysql和配置hive,然后发现更换mysql作为hive元数据库时一直报错 执行schematool -dbType mysql -initSchema 进行数据库初始化也报错 Metastore connection URL: jdbc:mysql://finnchan:3306/metastore?createDatabaseIfNotExist=true&useSSL=false&serverTimezone=GMT Metastore Conne...
说明了hive 配置文件 hive-site.xml配置信息你按照了mysql5.x的方法配置了。 下面我列举了5.x和8.x hive-site.xml配置的不同点。 <property> <name>javax.jdo.option.ConnectionURL</name> <value>jdbc:mysql://hadoop01:3306/hive_metastore?createDatabaseIfNotExist=true</value> </property> <property>...