[Django]-Failed to add documents to Solr: [Reason: Error 404 Not Found]

5👍

As specified in settings docs you need to specify the url to your core. Seems like you’ve missed the core in your URL. You need to create a core and the url should look like this:

'URL': 'http://localhost:9001/solr/default',

Leave a comment