On 7/10/2015 6:37 AM, seunghun....@leaseplan.com wrote: > How to put security on solr 5 on windows7? > > > i am quit new to solr 5 and running it through windows7. > I would able to index some files and search through /browse on other > computers as well. > what I am trying to do is putting security on solr because other > computer could access to do admin page. > 1. How can I limit the access to the admin page for other computers? > 2. How can I limit the users can ONLY access to specific core? > (computer 1~10 can access "solr/Core1/browse", computers 11~20 can > access "solr/Core2/browse". > > I have been searching it for a while but there are limited resources for > windows and for solr 5.2.1(new version) > > Any tip or advise will be helpful. > Thank for the help!!
Solr itself has historically had no security features. The container that Solr is running in, which is Jetty, does have some security features, but the available information on configuring those features is fairly limited. This is what we have available: https://wiki.apache.org/solr/SolrSecurity For different security on different URL paths, you probably need to edit the webapp configuration embedded in the solr.war file as well as the Jetty config. In the newest Solr version, some new security features have been included, but I know *very* little about them. The documentation is still a work in progress. Here's the current state: https://cwiki.apache.org/confluence/display/solr/Security These problems are one of the reasons that we want to turn Solr into a standalone application -- it would become much easier for Solr to incorporate security features. https://wiki.apache.org/solr/WhyNoWar Note Thanks, Shawn