我为我的某个网站设置了Solr(v 4.2.1),但我无法保护管理面板 我正在用Jetty运行Solr。我没有使用tomcat 我编辑了示例/ 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访问管理面板。 我错过了什么吗?
由于