Elasticsearch忘记密码重置

作者: root007 分类: Linux 发布时间: 2020-07-08 13:57


误删.sercurty索引 或者忘记密码

创建一个基于本地认证的超级管理员 以下示例将一个新用户添加my_user 。该用户的密码为my_user ,并且该用户与superuserg角色 

bin/elasticsearch-users useradd my_user -p my_user -r superuser

启动elasticsearch服务

通过api重置elastic超级管理员的密码

curl -XPUT -u"my_user:my_user" 'http://localhost:9200/_xpack/security/user/elastic/_password' -d '{ "password" : "pw@2020" }' -H "Content-Type: application/json"

/data/elasticsearch-7.5.1/bin/elasticsearch-users list 查看本地用户

https://www.elastic.co/guide/en/elasticsearch/reference/current/users-command.html

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注