目录
- 一、配置
- 1.修改配置文件
- 2.设置密码
- 3.修改密码
- 二、验证
一、配置
1.修改配置文件
修改配置文件 config/elasticsearch.yml,写入以下配置:
xpack.security.enabled: true
discovery.type: single-node
xpack.security.transport.ssl.enabled: true
2.设置密码
执行命令:
./bin/elasticsearch-setup-passwords interactive
会为4个用户设置密码:
elastic, kibana, logstash_system,beats_system
其中:
elastic 账号:内置的超级用户,拥有 superuser 角色。
kibana 账号:用来连接 elasticsearch 并与之通信。Kibana 服务器以该用户身份提交请求以访问集群监视 API 和 .kibana 索引,不能访问 index。
logstash_system 账号:用户 Logstash 在 Elasticsearch 中存储监控信息时使用。
3.修改密码
以下命令将 elastic 密码修改为 “123456”:
curl -H "Content-Type:application/json" -XPOST -u elastic 'http://127.0.0.1:9200/_xpack/security/user/elastic/_password' -d '{ "password" : "123456" }'
二、验证
访问 http://ip地址:9200/