Solr standalone + SSL and basic auth

2015-06-22 Thread Fadi Mohsen
Hi, I managed wiring up jetty and Solr war programmatically. After seeing SOLR-4470 (issues with inter cluster/node client calls), we now set: HttpClientUtil.setConfigurer(new MyCustomHttpClientConfigurer()); to setup clients before doing any inter node calls. also combined with:

Re: Solr standalone + SSL and basic auth

2015-06-22 Thread Anshum Gupta
Hi, Can you provide with more context? Solr doesn't officially support the 'war' (Web application ARchive) any more. What version of Solr is this? What are you trying to accomplish? Also, the patches on SOLR-4460 are from over an year ago. On Mon, Jun 22, 2015 at 5:22 AM, Fadi Mohsen

Re: Solr standalone + SSL and basic auth

2015-06-22 Thread Fadi Mohsen
Hi, I didnt apply SOLR-4460, I use Solr 5.1.0 and I can see same issue in log when it comes to gettingstarted example: no frame of reference to tell if we've missed updates, so that warn is execused. Issue now is getting sporadic answers for numFound when doing a plain select, seem like its

Re: Solr standalone + SSL and basic auth

2015-06-22 Thread Fadi Mohsen
Create collection : /solr/admin/collections?action=CREATEname=${collectionName}numShards=5replicationFactor=3maxShardsPerNode=3 On Mon, Jun 22, 2015 at 12:56 PM, Fadi Mohsen fadi.moh...@gmail.com wrote: Hi, I managed wiring up jetty and Solr war programmatically. After seeing SOLR-4470