Help Center> Cloud Search Service> Troubleshooting> Functions> Error Message "Forbidden" Is Displayed When I Delete an Index Pattern
Updated on 2023-02-02 GMT+08:00

Error Message "Forbidden" Is Displayed When I Delete an Index Pattern

Symptom

When I delete an index pattern on Kibana, the error message "Forbidden" is displayed.

Possible Causes

The previously created index pattern cannot be deleted because the Kibana indexes are read-only. If the disk usage exceeds a certain threshold, indexes will be automatically changed to read-only.

Solution

On the Dev Tools page of Kibana, run the following command to cancel the read-only state of the indexes:

PUT .kibana*/_settings
{
"index.blocks.read_only_allow_delete":null
}