In my web app I am running an org.apache.solr.client.solrj.embedded.EmbeddedSolrServer
for debugging purposes I would like to access the admin interface.
This is how I instantiate the server:
new EmbeddedSolrServer(new CoreContainer.Initializer().initialize(), "");
Is there a way to open the admin interface of this embedded server like so?
http://localhost:<defaultport>/admin
If so which port would I have to use (what is the default port)?
Else is there a setting that I use to specify the web path for accessing the admin UI?