Dinesh Kumar
Dinesh Kumar

Reputation: 363

solr admin panel HTTP ERROR 404

Am using digitalocean VPS I installed solr-5.5.0 sudo service solr status

Found 1 Solr nodes:

Solr process 1072 running on port 8983 { "solr_home":"/var/solr/data/", "version":"5.2.1 1684708 - shalin - 2015-06-10 23:20:13", "startTime":"2016-02-25T17:14:47.47Z", "uptime":"0 days, 8 hours, 39 minutes, 54 seconds", "memory":"92.1 MB (%18.8) of 490.7 MB"}

http://myip:8983/solr/ am getting this error on my screen.

HTTP ERROR 404

Problem accessing /solr/. Reason:

Not Found

Powered by Jetty://

how to fix this error

Upvotes: 0

Views: 1073

Answers (1)

Binoy Dalal
Binoy Dalal

Reputation: 896

As the exception says, you are missing the solrconfig.xml file in the conf folder of your core.

To get this file and all others, go to {SOLR_DIST}/server/solr/configsets/basic_configs and copy over the conf folder to /var/solr/data/gettingstarted1 and restart solr.

This will fix the error.

Upvotes: 1

Related Questions