For production, it feels unsafe to have a solr admin which even doesn\'t ask login credentials. How can I disable the solr admin page which comes by default? I simply want my we
sudo vim /opt/solr-4.8.1/example/etc/jetty.xml change
0.0.0.0 50000 1500 false
to
127.0.0.1 50000 1500 false
then sudo service solrd restart