1

当我运行以下 URL 时,我可以看到所有权限都已打开

http://localhost:8983/solr/#/

我现在在我的开发服务器上安装了 solr

http://www.xyz.com:8983/solr/#/

在这里,任何人都可以打开它并销毁文件。我怎样才能让它受密码保护???或服务器上的任何其他解决方案。

已编辑

我添加了导致 503 错误的代码。任何人都可以在这里检查错误

<web-app 
        id="/solr" 
        document-directory="/home/admin1/solr-4.2.1/example/"
        archive-path="/home/admin1/solr-4.2.1/example/webapps/solr.war"
        character-encoding="utf-8">

       <system-property solr.solr.home="/home/admin1/solr-4.2.1/example/solr/collection1/data" />

       <authenticator type="com.caucho.server.security.XmlAuthenticator">
          <init>
            <user>user:user12345:user,admin</user>
            <password-digest>none</password-digest>
          </init>
        </authenticator>
       <security-constraint url-pattern='/admin/*' role-name='user'/>
      </web-app>

我已经添加了这个

example/solr-webapp/webapp/WEB-INF/web.xml
4

1 回答 1

0

Solr Wiki上的Solr 安全页面对于限制对 Solr 的全部或部分访问的方法有很多很好的建议。

于 2013-05-14T16:24:09.653 回答