- Identify the oldest, or outdated 5.x cbevents core file(s):
curl "http://127.0.0.1:8080/solr/admin/cores?action=STATUS&wt=json&indexInfo=false&indent=true" | grep name | grep cbevents5_
- Manually unload each of the outdated cbevents core file(s), substituting <core_name> with the core folder name:
curl "http://localhost:8080/solr/admin/cores?action=UNLOAD&core=<core_name>"
- Verify outdated cbevents core file(s) were successfully unloaded:
curl "http://127.0.0.1:8080/solr/admin/cores?action=STATUS&wt=json&indexInfo=false&indent=true" | grep name | grep cbevents5_
- Manually delete the outdated cbevents core file(s) from the Linux file system, subsituting <core_name> with the core folder name:
- This solution will irrecoverably remove data from the Cb Response server.
rm -rf /var/cb/data/solr5/cbevents/<core_name>