MadanaGopal.Ragupathy@cognizant.com (Unlicensed)
Dec 07, 2017
Step 1:
Step 2:
Step 3:
Step 4:
curl -XPUT 'http://localhost:9200/_snapshot/es_backup' -d '{ "type": "fs", "settings": { "location": "indexdata", "compress": true } }'
Step 5:
#!/bin/bash backup=`date +%Y%m%d-%H%M%S` curl -XPUT "http://localhost:9200/_snapshot/es_backup/$backup?wait_for_completion=true" -d '{ "indices":"neo4j-index-node", "ignore_unavilable":true, "include_global_state":false }'
Top Section