I am in a situation where I need to access a solrcloud behind a firewall.

I have a tunnel enabled to one of the zookeeper as a starting points and the following test code:

CloudSolrServer server = new CloudSolrServer("localhost:2181");
server.setDefaultCollection("test");
SolrPingResponse p = server.ping();
System.out.println(p.getRequestUrl());

Right now it just "hangs" without any errors... what additional ports need forwarding and other configurations need setting to access a solrcloud over a ssh tunnel or tunnels?

Reply via email to