Re: RuleBasedAuthorizationPlugin configuration

2019-03-05 Thread Aroop Ganguly
Hi Dominique Were you able to resolve this ? I am also stuck with understanding a minimal permission-set to give to a readonly user to read from the /select endpoint. Regards Aroop > On Jan 1, 2019, at 11:23 PM, Dominique Bejean > wrote: > > Hi, > > I created a Jira issue >

Re: RuleBasedAuthorizationPlugin configuration

2019-01-01 Thread Dominique Bejean
Hi, I created a Jira issue https://issues.apache.org/jira/browse/SOLR-13097 Regards. Dominique Le lun. 31 déc. 2018 à 11:26, Dominique Bejean a écrit : > Hi, > > In debugging mode, I discovered that only in SolrCloud mode the collection > name is extract from the request path in the init()

Re: RuleBasedAuthorizationPlugin configuration

2018-12-31 Thread Dominique Bejean
Hi, In debugging mode, I discovered that only in SolrCloud mode the collection name is extract from the request path in the init() method of HttpSolrCall.java if (cores.isZooKeeperAware()) { // init collectionList (usually one name but not when there are aliases) ... } So in

Re: RuleBasedAuthorizationPlugin configuration

2018-12-30 Thread Dominique Bejean
Hi, After reading more carefully the log file, here is my understanding. The request http://2:xx@localhost:8983/solr/biblio/select?indent=on=*:*=json report this in log 2018-12-30 12:24:52.102 INFO (qtp1731656333-20) [ x:biblio] o.a.s.s.HttpSolrCall USER_REQUIRED auth header Basic Mjox

RuleBasedAuthorizationPlugin configuration

2018-12-21 Thread Dominique Bejean
Hi, I am trying to configure security.json file, in order to define the following users and permissions : - user "admin" with all permissions on all collections - user "read" with read permissions on all collections - user "1" with only read permissions on biblio collection -