赞
踩
修改配置文件 config/elasticsearch.yml,写入以下配置:
xpack.security.enabled: true
discovery.type: single-node
xpack.security.transport.ssl.enabled: true
执行命令:
./bin/elasticsearch-setup-passwords interactive
会为4个用户设置密码:
elastic, kibana, logstash_system,beats_system
其中:
elastic 账号:内置的超级用户,拥有 superuser 角色。
kibana 账号:用来连接 elasticsearch 并与之通信。Kibana 服务器以该用户身份提交请求以访问集群监视 API 和 .kibana 索引,不能访问 index。
logstash_system 账号:用户 Logstash 在 Elasticsearch 中存储监控信息时使用。
以下命令将 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/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。