I have a Solr 6 instance deployed on the cloud and have 3 cores. All three cores are functional, in the sense
- I am able to view the schema
- I am able to add documents programmatically (via Solarium for PHP)
- I am able to search documents programatically (via Solarium)
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.