Which handler handles calls to retrieve java properties and Cores

2016-06-13 Thread Dinesh Babu
Hi, My requirement is that Solr admin should not display any sensitive information for hackers to utilise. I would like to suppress calls to java properties and cores (URLs given below). Means I don't want Solr return results for these URLs. http://localhost:8080/solr/admin/info/properties?wt=j

Prevent the SSL Truststore password from showing up in plain text the Solr Admin

2016-06-08 Thread Dinesh Babu
Hi, In the Solr admin console, the java properties shows the “javax.​net.​ssl.​trustStorePassword” password in plain text. “javax.​net.​ssl.​trustStorePassword” is the password provided for the java trust store to store the trusted SSL certificates. 1) Is there a way to mask the passwor

RE: How to stop Solr tokenising search terms with spaces

2014-12-10 Thread Dinesh Babu
Hi Ahmet, We have gone for the Ngram solution. Thanks Regards, Dinesh Babu. -Original Message- From: Ahmet Arslan [mailto:iori...@yahoo.com.INVALID] Sent: 08 December 2014 15:27 To: solr-user@lucene.apache.org Subject: Re: How to stop Solr tokenising search terms with spaces Hi, May

RE: How to stop Solr tokenising search terms with spaces

2014-12-09 Thread Dinesh Babu
But my requirement is A* B* to be A* B* . A* OR B*won't meet my requirement. We have chosen the NGram solution and it is working for our rquirement at the moment. Thanks for your input and help Yonik Regards, Dinesh Babu. -Original Message- From: ysee...@gmail.com [mailto

RE: How to stop Solr tokenising search terms with spaces

2014-12-08 Thread Dinesh Babu
Thanks Erik Regards, Dinesh Babu. -Original Message- From: Erik Hatcher [mailto:erik.hatc...@gmail.com] Sent: 08 December 2014 17:02 To: solr-user@lucene.apache.org Subject: Re: How to stop Solr tokenising search terms with spaces debug output tells a lot. Looks like in the last two

RE: How to stop Solr tokenising search terms with spaces

2014-12-08 Thread Dinesh Babu
ot; } 3. {!complexphrase}displayName:RVN* Viewpoint* "debug": { "rawquerystring": "{!complexphrase}displayName:RVN* Viewpoint*", "querystring": "{!complexphrase}displayName:RVN* Viewpoint*", "parsedquery": "displayName:rvn* disp

RE: How to stop Solr tokenising search terms with spaces

2014-12-08 Thread Dinesh Babu
Hi Yonik, It is a text field ( all our search fields are of type text ). Very unlucky for me that it is not working. Will try the NGram solution provided by Jack. Regards, Dinesh Babu. -Original Message- From: ysee...@gmail.com [mailto:ysee...@gmail.com] On Behalf Of Yonik Seeley

RE: How to stop Solr tokenising search terms with spaces

2014-12-08 Thread Dinesh Babu
Thanks a lot Jack. Will try this Solution. Regards, Dinesh Babu. -Original Message- From: Jack Krupansky [mailto:j...@basetechnology.com] Sent: 07 December 2014 20:38 To: solr-user@lucene.apache.org Subject: Re: How to stop Solr tokenising search terms with spaces Thanks for the

RE: How to stop Solr tokenising search terms with spaces

2014-12-07 Thread Dinesh Babu
I just tried your suggestion {!complexphrase}displayName:"RVN Viewpoint users" Even the above did not work. Am I missing any configuration changes for this parser to work? Regards, Dinesh Babu. -Original Message- From: ysee...@gmail.com [mailto:ysee...@gmail.com] On Behal

RE: How to stop Solr tokenising search terms with spaces

2014-12-07 Thread Dinesh Babu
y\" found in phrase query string \"RVN*\"" 3) {!complexphrase}"RVN V*" -- Does not bring any result back. 4) {!complexphrase}"RVN Viewpoint*" -- Does not bring any result back. Do I need to make any configuration changes to get this working? Regards, D

RE: How to stop Solr tokenising search terms with spaces

2014-12-07 Thread Dinesh Babu
Thanks in advance for your help Regards, Dinesh Babu Regards, Dinesh Babu. -Original Message- From: Jack Krupansky [mailto:j...@basetechnology.com] Sent: 07 December 2014 02:04 To: solr-user@lucene.apache.org Subject: Re: How to stop Solr tokenising search terms with spaces AFAIK

RE: How to stop Solr tokenising search terms with spaces

2014-12-07 Thread Dinesh Babu
prefix (Han) 6) or partial surname without prefix (ank) 7) or the whole name (Tom Hanks) 8) or partial first name with or without prefix and partial surname with or without prefix ( To Han , om ank) 9) All of the above as case insensitive search Thanks in advance for your help Regards, Dinesh Babu

RE: How to stop Solr tokenising search terms with spaces

2014-12-06 Thread Dinesh Babu
- From: Dinesh Babu [mailto:dinesh.b...@pb.com] Sent: 05 December 2014 17:29 To: solr-user@lucene.apache.org Subject: RE: How to stop Solr tokenising search terms with spaces Hi Erik, Probably I celebrated too soon. When I tested {!field} it seemed to work as the query was on such a data that it

RE: How to stop Solr tokenising search terms with spaces

2014-12-05 Thread Dinesh Babu
s not works Regards, Dinesh Babu. -Original Message- From: Erik Hatcher [mailto:erik.hatc...@gmail.com] Sent: 05 December 2014 16:44 To: solr-user@lucene.apache.org Subject: Re: How to stop Solr tokenising search terms with spaces But also, to spell out the more typical way to do that:

RE: How to stop Solr tokenising search terms with spaces

2014-12-05 Thread Dinesh Babu
Thanks a lot Erik. {!field} seems to solve our issue. Much appreciate your help Regards, Dinesh Babu. -Original Message- From: Erik Hatcher [mailto:erik.hatc...@gmail.com] Sent: 05 December 2014 16:00 To: solr-user@lucene.apache.org Subject: Re: How to stop Solr tokenising search

RE: How to stop Solr tokenising search terms with spaces

2014-12-05 Thread Dinesh Babu
One more quick question Erik, If I want to do search on multiple fields using {!field} do we have a query similar to what {!prefix} has : q={!prefix f=field1 v=$f1_val} OR {!prefix f=field2 v=$f2_val} where &f1_val=&f2_val= Regards, Dinesh Babu. -Original Message- From

How to stop Solr tokenising search terms with spaces

2014-12-05 Thread Dinesh Babu
e search to one field and can't do on mutiple fields. Any solutions? Regards, Dinesh Babu.