Kibana create an index POST 403 (forbidden) on create index

 

I. Description of the problem:

Kibana create an index: kibana> management> index patterns> create index pattern

Index Name: merchant-receipt-log-2019.06.04

After clicking the Create button, nothing happens, no index is created successfully.

Open your browser and development tool [f12]

We found the following errors:

POST http://ip:5601/api/saved_objects/index-pattern 7 403 (forbidden)

 Second, the problem analysis:

Kibana console view Index: kibana> dev tools> console

Enter the command: GET _cat / indices

The index data:

 

 

 

 

Third, the cause of the problem:

  merchant-receipt-log-2019.06.04 index turned into read-only state, an error occurred because the storage space is reduced, resulting in kibana automatically turn it into a read-only state. 

 

Fourth, the solution:

  Expand the storage space or to execute code in kibana in -DevTool in.

1 PUT _settings
2 {
3   "index": {
4     "blocks": {
5       "read_only_allow_delete": "false"
6     }
7   }
8 }

 

 

Guess you like

Origin www.cnblogs.com/caoweixiong/p/10972120.html