Re: Authentication for all but selects

2021-02-07 Thread Robert Douglas
Thanks Craig! I got the following to work. { "authentication":{ "blockUnknown":false, "class":"solr.BasicAuthPlugin", "credentials":{"solr":"..."}}, "authorization":{ "class":"solr.RuleBasedAuthorizationPlugin", "user-role":{"solr":"admin"}, "permissions":[ {

RE: Authentication for all but selects

2021-02-05 Thread Oakley, Craig (NIH/NLM/NCBI) [C]
What works for us is having something like this at the bottom of security.json: { "name":"open_select", "path":"/select/*", "role":null, "index":9}, { "name":"catch-all-nocollection", "collection":null, "path":"/*",

Re: Authentication for each collection

2020-10-01 Thread Chris Hostetter
https://lucene.apache.org/solr/guide/8_6/authentication-and-authorization-plugins.html *Authentication* is global, but *Authorization* can be configured to use rules that restrict permissions on a per collection basis...

Re: Authentication between solr-exporter and solrcloud

2018-08-15 Thread Dwane Hall
Hi Sushant, I had the same issue and unfortunately the exporter does not appear to support a secure cluster. I raised a JIRA feature request so please upvote it as this will increase the chances of it being included in a future release.

Re: Authentication for Solr 6.4.2 , when deployed as WAR in tomcat

2018-01-22 Thread Shawn Heisey
On 1/22/2018 6:27 AM, D Dasaradha Rami Reddy wrote: > We have solr 6.4.2 currently deployed as war in tomcat. It doesn't have > authentication now. I want to setup the authentication for solr. When it > deployed as war in tomcat, The process specified in below page is not > working, Even after

Re: authentication

2017-11-18 Thread Jason Gerlowski
Hey Arkadi, Your "nagios" user is under "role_monitoring", which has "config-read" permissions. The default config-read gets you access to the Config API and Request Parameters API, but not the /admin/mbeans API (afaik). See

Re: authentication for solr admin page?

2012-05-15 Thread findbestopensource
I have written an article on this. The various steps to restrict / authenticate Solr admin interface. http://www.findbestopensource.com/article-detail/restrict-solr-admin-access Regards Aditya www.findbestopensource.com On Thu, Mar 29, 2012 at 1:06 AM, geeky2 gee...@hotmail.com wrote: update

Re: authentication for solr admin page?

2012-03-28 Thread geeky2
update - ok - i was reading about replication here: http://wiki.apache.org/solr/SolrReplication and noticed comments in the solrconfig.xml file related to HTTP Basic Authentication and the usage of the following tags: str name=httpBasicAuthUserusername/str str

RE: authentication for solr admin page?

2012-03-28 Thread ZHANG Liang F
...@hotmail.com] Sent: 2012年3月29日 3:36 To: solr-user@lucene.apache.org Subject: Re: authentication for solr admin page? update - ok - i was reading about replication here: http://wiki.apache.org/solr/SolrReplication and noticed comments in the solrconfig.xml file related to HTTP Basic Authentication

Re: Authentication/Authorization with Master-Slave over HTTP

2009-10-06 Thread Chris Hostetter
: I want to be able to have SOLR Slave instance on publicly available host : (accessible via HTTP), and synchronize with Master securely (via HTTP) HTTP based replication only works with the the new ReplicationHandler ... if you setup a proxy in front of your Master (either as a seperate

Re: Authentication Error

2009-04-17 Thread Noble Paul നോബിള്‍ नोब्ळ्
It is fixed in the trunk On Thu, Apr 16, 2009 at 10:47 PM, Allahbaksh Asadullah allahbaks...@gmail.com wrote: Thanks Noble.Regards, Allahbaksh 2009/4/16 Noble Paul നോബിള്‍ नोब्ळ् noble.p...@gmail.com On Thu, Apr 16, 2009 at 10:34 PM, Allahbaksh Asadullah allahbaks...@gmail.com wrote:

Re: Authentication Error

2009-04-17 Thread Allahbaksh Asadullah
Hi Noble. Thank you very much. I will download the latest solr nightly build. Please note this is the another problem which I think is bug. I am trying out load balancing feature in Solr 1.4 using LBHTTPSolrServer. Below is setup I have three solr server. A, B and C. Now the problem is if I

Re: Authentication Error

2009-04-16 Thread Noble Paul നോബിള്‍ नोब्ळ्
On Thu, Apr 16, 2009 at 10:34 PM, Allahbaksh Asadullah allahbaks...@gmail.com wrote: Hi,I have followed the procedure given on this blog to setup the solr Below is my code. I am trying to index the data but I am not able to connect to server and getting authentication error. HttpClient

RE: Authentication for REST-RPC Webservices

2007-09-18 Thread Dilip.TS
Hi, To add to my earlier query which would be better a) using REST-RPC or b) using RESTFul Webservices using JAX-WS ? Regards Dilip -Original Message- From: Dilip.TS [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 18, 2007 11:41 AM To: solr-user@lucene.apache.org Subject:

Re: Authentication

2007-09-14 Thread Bill Au
Add/Update, Commit/Optimize, Delete, and Delete by query, in Solr are done using the url /update. So should be able to protect that url at the container level outside of Solr. If you want you can protect the query url /select or the admin pages too. Container level authentication is transparent

Re: Authentication

2007-09-14 Thread jenix
When you say outside of Solr do you mean outside of solr.war? We finally got php/curl working with jetty's Basic Authentication. We had to unpack and repack solr.war to edit web.xml and it would have been nice to use some other method. -- View this message in context:

Re: Authentication

2007-09-14 Thread Bill Au
I meant outside of the Solr code. You are right that it is still in the Solr war file since you will need to put the authentication configuration into web.xml. Bill On 9/14/07, jenix [EMAIL PROTECTED] wrote: When you say outside of Solr do you mean outside of solr.war? We finally got

RE: Authentication

2007-09-14 Thread Lance Norskog
] Sent: Friday, September 14, 2007 1:49 PM To: solr-user@lucene.apache.org Subject: Re: Authentication I meant outside of the Solr code. You are right that it is still in the Solr war file since you will need to put the authentication configuration into web.xml. Bill On 9/14/07, jenix [EMAIL

Re: Authentication

2007-09-14 Thread Chris Hostetter
: When you say outside of Solr do you mean outside of solr.war? We finally : got php/curl working with jetty's Basic Authentication. We had to unpack and : repack solr.war to edit web.xml and it would have been nice to use some : other method. it should not be neccessary to unpack the war ... you