Unable to create a new index pattern in Kibana > Management > Index patterns > Create index pattern


Unable to create a new index pattern in Kibana > Management > Index patterns > Create index pattern getting following error

{
  "message": "index [.kibana_1] blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];: [cluster_block_exception] index [.kibana_1] blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];",
  "statusCode": 403,
  "error": "Forbidden"
}

1 Answer

5 years ago by

Run the following, that should fix your issue

PUT .kibana/_settings
{
  "index": {
    "blocks": {
      "read_only_allow_delete": "false"
    }
  }
}
5 years ago by Eleven