Re: Error: Strong key gen and multiprime gen require at least 1024-bit keysize

2016-10-31 Thread Adnan Yaqoob
xception.ErrorCode.SERVER_ERROR, > e); > > > > } > > > > keyGen.initialize(512); > > > > > > > > I pulled down the Solr code, changed the hard-coded value to 1024, > rebuilt > > it, and this now everything seems to work great. > > > > > > > > Would this be a valid code change to request? I'm happy to create the > JIRA > > ticket and supply a patch file. > > > > > > > > Thanks, > > > > Jeremy > -- Regards, *Adnan Yaqoob*

Re: SOLR 5.0.0 and Tomcat version ?

2015-03-23 Thread Adnan Yaqoob
>> > >> With Regards > >> Aman Tandon > >> > >> On Mon, Mar 23, 2015 at 9:09 PM, Vishal Swaroop > >> wrote: > >> > >> > Hi, > >> > > >> > We are planning to configure new linux server for latest SOLR release > >> i.e. > >> > 5.0.0 > >> > > >> > Please suggest which Tomcat version will be best compatible with > SOLR5... > >> > latest Tomcat release is 8.0 > >> > > >> > Thanks > >> > > >> > -- Regards, *Adnan Yaqoob*

Re: CloudSolrServer : Could not find collection : gettingstarted

2015-03-19 Thread Adnan Yaqoob
Yes. Just before your email I was able to figure out. My project was set to user solrj 4.10.3 everything was working fine except cloud so I didn't noticed. After I switched to Solrj 5 it's working now Thanks everyone for supporting

Re: Start stop solr started in solr cloud mode

2015-03-19 Thread Adnan Yaqoob
ind any command for this. Please help. > -- Regards, *Adnan Yaqoob*

Re: CloudSolrServer : Could not find collection : gettingstarted

2015-03-19 Thread Adnan Yaqoob
; actually create the collection. > > What steps did you follow to create the collection in SolrCloud? It's > possible you have the wrong ZK root somehow I suppose. > > Best, > Erick > > On Wed, Mar 18, 2015 at 12:32 PM, Adnan Yaqoob wrote: > > I'm ge

CloudSolrServer : Could not find collection : gettingstarted

2015-03-18 Thread Adnan Yaqoob
aultCollection("gettingstarted"); SolrInputDocument doc = new SolrInputDocument(); doc.addField("id", id); doc.addField("name", name); server.add(doc); server.commit(); Not sure what I'm missing. My Zookeeper is runnin

Can we used CloudSolrServer for searching data

2015-03-18 Thread Adnan Yaqoob
I am using Solrcloud with zookeeper setup. but when I try to make query using following code snippet I get exception code: CloudSolrServer server = new CloudSolrServer("localhost:2181"); server.setDefaultCollection("gettingstarted"); server.connect(); SolrQuery query = new SolrQuery();