mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-12 15:35:44 +02:00
elasticsearch-users: add page (#17514)
This commit is contained in:
parent
938b8c4956
commit
b8ee598969
1 changed files with 24 additions and 0 deletions
24
pages/common/elasticsearch-users.md
Normal file
24
pages/common/elasticsearch-users.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# 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`
|
Loading…
Add table
Reference in a new issue