启动Hivebin\hive 使用JDBC方式访问Hive (第三种) 在hive-site.xml 文件添加如下 <!-- 指定 hiveserver2 连接的 host --><property><name>hive.server2.thrift.bind.host</name><value>hadoop102</value></property><!-- 指定 hiveserver2 连接的端口号 --><property><name>hive.server2.thrift.port</...
启动Hive bin/hive 使用hivehive> show databases; hive> show tables; hive> create table test(id int); hive> insert into test values(1); hive> select * from test; 开启另一个窗口开启 Hive,在/tmp/atguigu 目录下监控 hive.log 文件 Hive 默认使用的元数据库为 derby,开启 Hive ...