Skip to content
This repository has been archived by the owner on Jan 21, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 449 Bytes

change-pass.md

File metadata and controls

20 lines (15 loc) · 449 Bytes

Change kibana's nginx default user and password

which defaults to admin/admin

$ docker run -d --name elstack \
  -p 80:80 \
  -p 443:443 \
  -p 9200:9200 \
  -e SSL=true \
  -e ELSK_USER="blacktop" \
  -e ELSK_PASS="S3cr3T" \
  blacktop/elastic-stack

NOTE: You can only set a user/pass if SSL is enabled via the env var as seen above.

To use your own SSL certs

See here