NOTE: You are looking at documentation for an older release. For the latest information, see the current release documentation.
Enabling anonymous access
editEnabling anonymous access
editIncoming requests are considered to be anonymous if no authentication token
can be extracted from the incoming request. By default, anonymous requests are rejected and an authentication error is returned (status code 401
).
To enable anonymous access, you assign one or more roles to anonymous
users in the elasticsearch.yml
configuration file. For example, the following
configuration assigns anonymous users role1
and role2
:
The username/principal of the anonymous user. Defaults to
|
|
The roles to associate with the anonymous user. If no roles are specified, anonymous access is disabled—anonymous requests will be rejected and return an authentication error. |
|
When |