Re: BasicAuth help

2020-09-08 Thread Dwane Hall
gin) Thanks, Dwane From: Jan Høydahl Sent: Monday, 7 September 2020 5:21 PM To: solr-user@lucene.apache.org Subject: Re: BasicAuth help That github patch is interesting. My initial proposal for how to plug LDAP into Solr was to make the AuthenticationProvider pluggable in BasicAuthPlugin, so

Re: BasicAuth help

2020-09-07 Thread Jan Høydahl
That github patch is interesting. My initial proposal for how to plug LDAP into Solr was to make the AuthenticationProvider pluggable in BasicAuthPlugin, so you could plug in an LDAPAuthProvider. See https://issues.apache.org/jira/browse/SOLR-8951

Re: BasicAuth help

2020-09-04 Thread Joe Doupnik
    There is an effective alternative approach to placing authentication within Solr. It is to use the web server (say Apache) as a smart proxy to Solr and in so doing also apply access restrictions of various kinds. Thus Solr remains intact, no addition needed for authentication, and authentic

Re: BasicAuth help

2020-09-04 Thread Aroop Ganguly
Try looking at a simple ldap authentication suggested here: https://github.com/itzmestar/ldap_solr You can combine this for authentication and couple it with rule based authorization. > On Aug 28, 2020, at 12:26 PM, Vanalli, Ali A - DOT

Re: BasicAuth help

2020-09-03 Thread Jason Gerlowski
Hi Ali, 1. Solr doesn't have any support for LDAP authentication ootb (at least, as far as I'm aware). The BasicAuth plugin requires users to be defined in the JSON configuration. 2. What failed when you ran the documented BasicAuth example? What error messages did you get etc.? If there's som

BasicAuth help

2020-08-28 Thread Vanalli, Ali A - DOT
Hello, Solr is running on windows machine and wondering if it possible to setup BasicAuth with the LDAP? Also, tried the example of Basic-Authentication that is published here but thi