1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-12 13:35:40 +02:00
tldr/pages/common/elasticsearch-users.md
2025-08-09 02:43:59 +03:00

24 lines
642 B
Markdown

# elasticsearch-users
> Manage native realm users in Elasticsearch, including creating, updating, and deleting users.
> More information: <https://www.elastic.co/guide/en/elasticsearch/reference/current/users-command.html>.
- Add a new user interactively (prompts for password):
`elasticsearch-users useradd {{username}}`
- Add a new user and specify roles:
`elasticsearch-users useradd {{username}} -r {{role1,role2}}`
- Change the password for an existing user:
`elasticsearch-users passwd {{username}}`
- Delete a user:
`elasticsearch-users userdel {{username}}`
- List all users in the native realm:
`elasticsearch-users list`