当前位置:   article > 正文

docker安装kibana并配置es的密码_value of "elastic" is forbidden. this is a superus

value of "elastic" is forbidden. this is a superuser account that cannot wri

1.拉取镜像

docker pull kibana:8.7.0
  • 1

2.第一种方式 创建容器并运行

不可用elastic这个用户


[FATAL][root] Error: [config validation of [elasticsearch].username]: value of "elastic" is forbidden. This is a superuser account that cannot write to system indices that Kibana needs to function. Use a service account token instead.

  • 1
  • 2
  • 3
创建新账户
elasticsearch-users useradd username

给账户授权
elasticsearch-users roles -a superuser username
elasticsearch-users roles -a kibana_system username
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
> 此处可用授权过的账户直接创建并运行容器
docker run -d \
--name kibana \
-e ELASTICSEARCH_HOSTS=http://ip:port \
-e ELASTICSEARCH_USERNAME=username \
-e ELASTICSEARCH_PASSWORD=password \
-p 5601:5601  \
kibana:8.7.0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

3.第二种方式 通过修改配置文件达到效果

docker run -d \
--name kibana \
-e ELASTICSEARCH_HOSTS=http://ip:port \
-v kibana_config:/usr/share/kibana/config \
-p 5601:5601  \
kibana:8.7.0
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

修改 /var/lib/docker/volumes/kibana_config/_data/kibana.yml


server.host: "0.0.0.0"
server.shutdownTimeout: "5s"

#hosts这个也可以在环境变量那改 此处也可以
elasticsearch.hosts: [ "http://elasticsearch:9200" ]
monitoring.ui.container.elasticsearch.enabled: true

#添加这两行即可
elasticsearch.username: elastic
elasticsearch.password: elastic


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

效果

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/513042
推荐阅读
相关标签
  

闽ICP备14008679号