【发布时间】:2020-07-10 21:50:22
【问题描述】:
我已经安装了repository-azure 并使用以下设置配置了elasticsearch:
path.data: /datadrive/elasticsearch/data
path.logs: /datadrive/elasticsearch/log
cloud:
azure:
storage:
my_account:
account: teststorage
key: NtZQddasdasdasdsadsadfdsdsfsafsadasdyyP==
当我尝试拍摄快照时出现错误。
请求:
PUT _snapshot/es_snapshot
{
"type": "azure"
}
回复:
{
"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
}
【问题讨论】:
标签: azure elasticsearch elasticsearch-plugin