1

我已经为我的一个网站设置了 Solr (v 4.2.1),但我无法保护我正在使用 Jetty 运行 Solr 的管理面板。我没有使用 tomcat 我已经编辑了 example/etc/jetty.xml 并修改了主机值以读取

<Call name="addConnector">
      <Arg>
          <New class="org.eclipse.jetty.server.bio.SocketConnector">
            <Set name="host"><SystemProperty name="jetty.host" default="10.100.202.42"/></Set>
            <Set name="port"><SystemProperty name="jetty.port" default="8983"/></Set>
            <Set name="maxIdleTime">50000</Set>
            <Set name="lowResourceMaxIdleTime">1500</Set>
            <Set name="statsOn">false</Set>
          </New>
      </Arg>
    </Call>

我启动服务器并绑定到

::ffff:10.100.202.42:8983

但是,我可以使用站点的外部 IP 访问管理面板。我错过了什么吗?

谢谢

4

0 回答 0