I have installed repository-azure
and configured elasticsearch
with below settings:
path.data: /datadrive/elasticsearch/data
path.logs: /datadrive/elasticsearch/log
cloud:
azure:
storage:
my_account:
account: teststorage
key: NtZQddasdasdasdsadsadfdsdsfsafsadasdyyP==
When I am trying to take a snapshot it's giving an error.
Request:
PUT _snapshot/es_snapshot
{
"type": "azure"
}
Response:
{
"error": {
"root_cause": [
{
"type": "repository_verification_exception",
"reason": "[es_snapshot] path is not accessible on master node"
}
],
"type": "repository_verification_exception",
"reason": "[es_snapshot] path is not accessible on master node",
"caused_by": {
"type": "i_o_exception",
"reason": "Can not write blob master.dat",
"caused_by": {
"type": "storage_exception",
"reason": "The specified container does not exist."
}
}
},
"status": 500
}