0
votes

I am aware that I can disable the replication from master for all slaves as follows:

http://master_host:port/solr/replication?command=disablereplication

However, as per my understanding, this disabling of replication is for all of the cores. Can we specify which core we do want to disable the replication for?

Please note that I do not want to use the replication disabling facility from slave side.

1

1 Answers

3
votes

The name of the core is missing in your command. I think if you add the core name then it should work. I found this command in Solr Index Replication documentation.

http://master_host:port/solr/core_name/replication?command=disablereplication

Also I think you can explore the Replication Screen for disabling the Replication from master side. This is also mentioned in Solr Replication Screen documentation.

I hope this will be helpful to you.