On 7/13/2017 11:23 AM, Bertini, Vickie wrote: > > I have installed Solr 6.5.1 as a service on our Windows Server 2012. > It is up and running properly under localhost:8983, however, I have a > domain name I want to assign to it so our external content delivery > servers can reach it for our web search. However, I am very new to > Solr and mostly only familiar with IIS, not jetty, so is there > documentation on how I would configure solr to run on our new > domain/IP instead of localhost? Web searches up to this point have > been fairly unproductive and unhelpful. >
The Jetty server that comes with Solr is configured to listen on all system network interfaces. It is not restricted to localhost. The operating system may be blocking external traffic. Most operating systems have a built-in firewall that will block all external connections to Solr's listening port by default. Windows has such a firewall. Consult Microsoft documentation for how to configure their firewall. Once you have external network access allowed, it's up to you to properly configure your DNS servers so the domain name resolves correctly. Thanks, Shawn