当前位置: 首页 > 知识库问答 >
问题:

Elasticsearch index:/fulltext_2/doc/xxxxx被阻止原因:[禁止/12/索引只读/允许删除]

乜栋
2023-03-14

谁能告诉我这个错误是什么意思吗?Elasticsearch index:/fulltext_2/doc/xxxxx被阻止原因:[禁止/12/索引只读/允许删除我有一个本地Elasticsearch服务器。我已经创建了一个索引fulltext_2,我想插入一些文档。有一个PHP脚本来做这件事。如果我有创建索引的权限,为什么我不能将任何项目插入数据库?发生了什么事?感谢您的帮助。

共有1个答案

宗政文彬
2023-03-14

您可以通过以下方式修复此错误:

curl -XPUT 'localhost:9200/_settings' -H 'Content-Type:application/json' -d '{"index":{"blocks":{"read_only_allow_delete":"false"}}}'
curl -XPUT 'localhost:9200/fulltext_2/_settings' -H 'Content-Type:application/json' -d '{"index":{"blocks":{"read_only_allow_delete":"false"}}}'
 类似资料: