일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
- Java
- API
- 900gle
- MySQL
- zip 암호화
- License
- plugin
- flask
- TensorFlow
- Test
- license delete
- docker
- 파이썬
- query
- matplotlib
- sort
- ELASTIC
- Mac
- analyzer test
- aggs
- 차트
- high level client
- Python
- zip 파일 암호화
- Kafka
- token filter test
- Elasticsearch
- licence delete curl
- aggregation
- springboot
- Today
- Total
개발잡부
[es] Elastic stack 8 for docker compose 본문
https://github.com/900gle/900gle-elk/tree/8.4.1
기존에 사용하던 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 로 통신하는 서비스 계정이 바뀌었다네
서비스 계정은 코드에 미리 정의되어 있습니다. 다음 서비스 계정을 사용할 수 있습니다.
## 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 |