我正在尝试连接到 Windows 主机上远程 Centos Virtual Box 上托管的 Accumulo 实例。
String instanceName="accumulo"
String zooservers = "ip:2181" //ip is the public ip of the Windows host system not the virtual box
ZooKeeperInstance inst = new ZooKeeperInstance(instanceName, zooServers);
Connector conn = inst.getConnector("user", new PasswordToken("pass"));
我没有添加进一步编写的代码,因为我没有得到 conn 实例并且无法从这里继续进行。