Guest User

Untitled

a guest
Apr 25th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.32 KB | None | 0 0
  1. <!-- solrconfig.xml for master instance -->
  2. <requestHandler name="/replication" class="solr.ReplicationHandler" >
  3. <lst name="master">
  4. <str name="replicateAfter">startup</str>
  5. <str name="replicateAfter">commit</str>
  6. <!--If configuration files need to be replicated give the names here, separated by comma -->
  7. <str name="confFiles">schema.xml,stopwords.txt,elevate.xml</str>
  8. <str name="maxNumberOfBackups">0</str>
  9. </lst>
  10. </requestHandler>
  11. <!-- solrconfig.xml in slave instances -->
  12. <requestHandler name="/replication" class="solr.ReplicationHandler" >
  13. <lst name="slave">
  14. <str name="enable">true</str>
  15. <str name="masterUrl">https://load-balanced-url/solr/itembuckets</str>
  16. <str name="pollInterval">00:01:00</str>
  17. <str name="compression">internal</str>
  18. <str name="httpConnTimeout">5000</str>
  19. <str name="httpReadTimeout">10000</str>
  20. </lst>
  21. </requestHandler>
  22.  
  23. WARN Unable to connect to Solr: [http://SOLR_URL_:8984/solr/], the [SolrNet.Exceptions.SolrConnectionException] was caught.
  24. Exception: SolrNet.Exceptions.SolrConnectionException
  25. Message: Unable to connect to the remote server
  26. Source: SolrNet
  27. at SolrNet.Impl.SolrConnection.Get(String relativeUrl, IEnumerable`1 parameters)
  28. at SolrNet.Impl.SolrCoreAdmin.Status()
  29. at Sitecore.ContentSearch.SolrProvider.SolrStatus.OkSolrStatus()
  30.  
  31. Nested Exception
  32.  
  33. Exception: System.Net.WebException
  34. Message: Unable to connect to the remote server
  35. Source: System
  36. at System.Net.HttpWebRequest.GetResponse()
  37. at HttpWebAdapters.Adapters.HttpWebRequestAdapter.GetResponse()
  38. at SolrNet.Impl.SolrConnection.GetResponse(IHttpWebRequest request)
  39. at SolrNet.Impl.SolrConnection.Get(String relativeUrl, IEnumerable`1 parameters)
  40.  
  41. Nested Exception
  42.  
  43. Exception: System.Net.Sockets.SocketException
  44. Message: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond 136.252.132.83:8984
  45. Source: System
  46. at System.Net.Sockets.Socket.DoConnect(EndPoint endPointSnapshot, SocketAddress socketAddress)
  47. at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
Add Comment
Please, Sign In to add comment