Created 05-18-2016 09:27 PM
I setup Hive HA by installing 2 HiveServer2 to the cluster. But could not connect to the cluster with beeline following the document instruction from
Command used looks like
beeline -u jdbc:hive2://zk01:2181,zk02:2181,zk03:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2 -n hive -p hadoop
Thanks,
Created 05-18-2016 09:29 PM
When using beeline, you need to put the connection string in double quote. The following command should work for you
beeline -u "jdbc:hive2://zk01:2181,zk02:2181,zk03:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2" -n hive -p hadoop
please let me know if that solves you problem.
-Qi
Created 05-18-2016 09:29 PM
When using beeline, you need to put the connection string in double quote. The following command should work for you
beeline -u "jdbc:hive2://zk01:2181,zk02:2181,zk03:2181/;serviceDiscoveryMode=zooKeeper;zooKeeperNamespace=hiveserver2" -n hive -p hadoop
please let me know if that solves you problem.
-Qi
Created 05-18-2016 09:31 PM
Thanks Qi, adding quotes solved the problem.