06、ElasticStack系列,第六章:elasticsearch设置密码

第六章:Elasticsearch设置密码

一、修改配置文件

xml 复制代码
##进入容器
docker exec -it elasticsearch bash

##启用认证
vi config/elasticsearch.yml
添加如下内容:
http.cors.enabled: true
http.cors.allow-origin: "*"
http.cors.allow-headers: Authorization
xpack.security.enabled: true
xpack.security.transport.ssl.enabled: true

##重启容器
docker restart elasticsearch

二、设置用户密码

xml 复制代码
##重启容器后,再次进入容器
docker exec -it elasticsearch /bin/bash
##执行一下命令
./bin/elasticsearch-setup-passwords interactive

##会 出现如下内容:
出现:Initiating the setup of passwords for reserved users elastic,apm_system,kibana,logstash_system,beats_system,remote_monitoring_user.
You will be prompted to enter passwords as the process progresses.
Please confirm that you would like to continue [y/N]

##输入y  挨个输入密码即可

Please confirm that you would like to continue [y/N]y


Enter password for [elastic]: 
Reenter password for [elastic]: 
Enter password for [apm_system]: 
Reenter password for [apm_system]: 
Enter password for [kibana]: 
Reenter password for [kibana]: 
Enter password for [logstash_system]: 
Reenter password for [logstash_system]: 
Enter password for [beats_system]:

Reenter password for [beats_system]: 
Enter password for [remote_monitoring_user]: 
Reenter password for [remote_monitoring_user]: 
Changed password for user [apm_system]
Changed password for user [kibana]
Changed password for user [logstash_system]
Changed password for user [beats_system]
Changed password for user [remote_monitoring_user]
Changed password for user [elastic]


##重启容器
docker restart elasticsearch

三、验证

xml 复制代码
http://192.168.73.107:9200/


相关推荐
鸭鸭鸭进京赶烤5 小时前
大学专业科普 | 云计算、大数据
大数据·云计算
ldj20206 小时前
Jenkins 部署脚本
jenkins
你想考研啊6 小时前
三、jenkins使用tomcat部署项目
运维·tomcat·jenkins
G皮T9 小时前
【Elasticsearch】自定义评分检索
大数据·elasticsearch·搜索引擎·查询·检索·自定义评分·_score
你想考研啊10 小时前
四、jenkins自动构建和设置邮箱
运维·jenkins
Code blocks10 小时前
使用Jenkins完成springboot项目快速更新
java·运维·spring boot·后端·jenkins
搞笑的秀儿12 小时前
信息新技术
大数据·人工智能·物联网·云计算·区块链
SelectDB12 小时前
SelectDB 在 AWS Graviton ARM 架构下相比 x86 实现 36% 性价比提升
大数据·架构·aws
二二孚日13 小时前
自用华为ICT云赛道Big Data第五章知识点-Flume海量日志聚合
大数据·华为
会又不会13 小时前
Jenkins-Email Extension 插件插件
运维·jenkins