gpt4 book ai didi

elasticsearch - 无法为 ElasticSearch 快照创建存储库

转载 作者:行者123 更新时间:2023-12-02 22:44:43 25 4
gpt4 key购买 nike

我正在尝试为我的 ElasticSearch 快照创建一个备份存储库。

curl -XPUT 'http://localhost:9200/_snapshot/backup' -d '{
"type": "fs",
"settings": {
"location": "/home/admin/dumps/elasticsearch",
"compress": true
}
}'

我得到的问题是:

{"error":{"root_cause":[{"type":"repository_exception","reason":"[backup] failed to create repository"}],...



我很确定这是我目录上的正确/用户问题。

我试过:
chmod 777 /home/admin/dumps/elasticsearch

实际上 repo 权利是:
drwxrwxrwx  2 admin admin 4096 Jan  6 14:39 elasticsearch

但我有同样的问题。

我还尝试了使用 sudo 的 curl (同样的问题)。

好吧,我现在迷路了。 ;-)
提前致谢。

最佳答案

您首先必须将共享文件系统挂载到所有节点上的相同位置,因此添加 path.repo: ["/home/admin/dumps/elasticsearch"]elasticsearch.yml
来自 Docs

In order to register the shared file system repository it is necessary to mount the same shared filesystem to the same location on all master and data nodes. This location (or one of its parent directories) has to be registered in the path.repo setting on all master and data nodes.



然后您需要重新启动所有节点。

关于elasticsearch - 无法为 ElasticSearch 快照创建存储库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34642720/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com