In my web application, I run org.apache.solr.client.solrj.embedded.EmbeddedSolrServer for debugging purposes, I would like to access the admin interface.
This is how I create the server instance:
new EmbeddedSolrServer(new CoreContainer.Initializer().initialize(), "");
Is there any way to open the admin interface of this embedded server like this?
http:
If so, which port will I have to use (what is the default port)?
Does Else have a parameter that I use to specify a web path to access the admin user interface?
source share