Hi,
I am playing around with elasticsearch. I have three VMs set up.
1 provides a common nfs folder. Every machine has access to it.
2 has a syslog server which sends logs into elasticsearch
3 is supposed to be a machine that sends a command to 2 to create a snapshot and then import the snapshot locally.
I have installed elasticsearch and kibana on 2 and 3. I set the same path.repo on both machines, I registered the common folder as a repository.
If I send the command to create the snapshot from 3 tot 2 using "curl -X PUT remoteIP:9200 ..." it works.
On 2 and 3 I can use the command to see information on the snapshot, both times using "localhost" as the ip.
I get
{"snapshots" : [ {"snapshot" : "snapshot_2",...}]}
But when I try to restore it onto 3, using "curl -X POST "localhost:9200/_snapshot/backup/snapshot_2/_restore?pretty", I get the message
[backup:snapshot_2] : snapshot does not exist.
am I missing something here?
