I have a Solr 6 instance deployed on the cloud and have 3 cores. All three cores are functional, in the sense
However, when I click on 'query' menu under the core and run a generic query via the admin console - http://192.192.192.192/solr/#/cars/query
- it returns an error message
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL /solr/cars/select was not found on this server.</p>
</body></html>
But if I run the same query via the link http://192.192.192.192/solr/cars/select?indent=on&q=*:*&wt=json
I get all the results - what am I doing wrong?
I have tried reloading the cores, I have tried restarting the Solr server. I have restarted the Apache server.. no avail. Help is appreciated.
The easiest way to troubleshoot this is to open Browser's developer/debugger panel and see what URL is getting actually requested in the Net (or similar) panel.
My guess without seeing that output is that maybe your server is reporting itself running on a different address, so the Admin UI uses the reported address (e.g. localhost) instead of the correct one. And, for some reason, you do have something running on that server and it reports an error.