반응형
Recent Posts
Recent Comments
관리 메뉴

개발잡부

[es] Elastic stack 8 for docker compose 본문

ElasticStack8/System

[es] Elastic stack 8 for docker compose

닉의네임 2022. 9. 1. 21:05
반응형

 

https://github.com/900gle/900gle-elk/tree/8.4.1

 

GitHub - 900gle/900gle-elk

Contribute to 900gle/900gle-elk development by creating an account on GitHub.

github.com

 

기존에 사용하던 docker 파일을 버전만 올려서 사용했더니 아래와 같은 에러가 

 

 FATAL  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. Learn more: https://www.elastic.co/guide/en/elasticsearch/reference/8.0/service-accounts.html

 

확인해보니 kibana 에서 elasticsearch 로 통신하는 서비스 계정이 바뀌었다네

 

 

서비스 계정은 코드에 미리 정의되어 있습니다. 다음 서비스 계정을 사용할 수 있습니다.

elastic/fleet-server
Fleet 서버가 Elasticsearch와 통신하는 데 사용하는 서비스 계정입니다.
elastic/kibana

 

Kibana에서 Elasticsearch와 통신하는 데 사용하는 서비스 계정입니다.

## Default Kibana configuration from Kibana base image.
## https://github.com/elastic/kibana/blob/master/src/dev/build/tasks/os_packages/docker_generator/templates/kibana_yml.template.ts
#
server.name: kibana
server.host: 0.0.0.0
elasticsearch.hosts: [ "http://elasticsearch:9200" ]
monitoring.ui.container.elasticsearch.enabled: true

## X-Pack security credentials
#
elasticsearch.username: elastic/kibana
elasticsearch.password: dlengus

 변경 후 실행 

 

docker compose up -d --build

앵.. 

 

[2022-09-01T13:48:11.097+00:00][ERROR][elasticsearch-service] Unable to retrieve version information from Elasticsearch nodes. security_exception: [security_exception] Reason: unable to authenticate user [elastic/kibana] for REST request [/_nodes?filter_path=nodes.*.version%2Cnodes.*.http.publish_address%2Cnodes.*.ip]

 

 

(base) ➜  es8.4.0 git:(master) ✗ docker compose -f docker-compose-8.yml up -d --build

반응형

'ElasticStack8 > System' 카테고리의 다른 글

[es8] docker elasticsearch 8.6  (0) 2023.03.04
[es] 900gle ELK8 for docker compose  (0) 2022.09.02
[es] Elasticsearch 8 for Ubuntu  (0) 2022.09.02
[es] Elasticsearch 8 install for docker compose  (0) 2022.09.02
Comments