1.问题现象
1.es重启后,查询索引状态,存在red状态的索引
命令:curl -XGET http://elastic:123456@192.168.234.131:9200/_cat/indices/|grep red
2.删除索引时,响应超时
命令:curl -XDELETE http://elastic:123456@192.168.234.131:9200/index1(上述报红的索引)
3.查询到有索引变为只读状态
命令:curl 2 -XGET http://elastic:123456@192.168.234.131:9200/_cat/index1/_doc1|grep xxx
4.修改索引为可编辑状态时,响应超时
命令:curl -XPUT -H "Content-Type:application/json" http://elastic:123456@192.168.234.131:9200/index1/_settings -d
'{"index.blocks.read_only_allow_delete":fal