On 12/6/2017 11:32 AM, Steve Pruitt wrote: > After clicking Add Collection to create it, I get a Solr lost connection > error and the admin console is frozen. Looking at the log I have > o.a.s.s.HttpSolrCall null:org.apache.solr.common.SolrException: create the > collection time out:180s > > When I open the admin console on the two VM's I see the collection and the > graph shows my three shards distributed across all three machines. The two > VM's are green, but the vector for my machine not active. When I click on > it. I get something suggesting a SSL connection issue. This is a > development install, so I have not messed security. > > When I look at the two VM's, they have the data folder for the collection. > My machine does not.
Initial guess is the host firewall. You're probably talking about the Windows machine that has been discussed elsewhere. All recent Windows versions come with a firewall that is enabled by default and will block all incoming connections from other machines, unless it is configured to allow them. SolrCloud relies heavily on its nodes being able to talk to each other over the network. https://technet.microsoft.com/en-us/library/cc766312(v=ws.10).aspx If I'm right, you could just turn off the firewall, but I don't generally recommend that for client systems. It's something I often do on server systems, but only when there's another firewall protecting them. For your system, you should probably leave the firewall enabled and allow the traffic for Solr to get through the firewall. If you choose to allow traffic by program, then the program in this case will be the Java executable that is used to start Solr. If you upgrade Java, you may need to allow it again. You can choose to allow it by TCP port, in which case you'll need to know what port Solr is using. The default port is 8983. Thanks, Shawn