| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 1 年前 | ||
| 10 个月前 | ||
| 10 个月前 | ||
| 8 个月前 | ||
| 7 个月前 | ||
| 6 个月前 | ||
| 3 个月前 | ||
| 2 个月前 | ||
| 10 天前 | ||
| 10 天前 | ||
| 10 天前 | ||
| 10 天前 |
Quick reference
-
The official kibana docker image.
-
Maintained by: openEuler CloudNative SIG.
-
Where to get help: openEuler CloudNative SIG, openEuler.
Kibana | openEuler
Current kibana docker images are built on the openEuler. This repository is free to use and exempted from per-user rate limits.
Kibana is your window into the Elastic Stack. Specifically, it's a browser-based analytics and search dashboard for Elasticsearch.
Learn more on kibana website.
Supported tags and respective Dockerfile links
The tag of each kibana docker image is consist of the version of Kibana and the version of basic image. The details are as follows
| Tags | Currently | Architectures |
|---|---|---|
| 9.4.2-oe2403sp3 | kibana 9.4.2 on openEuler 24.03-LTS-SP3 | amd64, arm64 |
| 9.3.4-oe2403sp3 | kibana 9.3.4 on openEuler 24.03-LTS-SP3 | amd64, arm64 |
| 9.3.2-oe2403sp3 | kibana 9.3.2 on openEuler 24.03-LTS-SP3 | amd64, arm64 |
| 9.2.1-oe2403sp2 | kibana 9.2.1 on openEuler 24.03-LTS-SP2 | amd64, arm64 |
| 9.2.0-oe2403sp2 | kibana 9.2.0 on openEuler 24.03-LTS-SP2 | amd64, arm64 |
| 9.1.3-oe2403sp1 | kibana 9.1.3 on openEuler 24.03-LTS-SP1 | amd64, arm64 |
| 8.17.3-oe2403sp1 | Kibana 8.17.3 on openEuler 24.03-LTS-SP1 | amd64, arm64 |
Usage
Create a new Docker network for Elasticsearch and Kibana
docker network create elastic
Start an Elasticsearch container
docker run --name es01 --net elastic -p 9200:9200 -it -m 1GB openeuler/elasticsearch:latest
Copy the generated elastic password and enrollment token. These credentials are only shown when you start Elasticsearch for the first time. You can regenerate the credentials using the following commands
docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-reset-password -u elastic
docker exec -it es01 /usr/share/elasticsearch/bin/elasticsearch-create-enrollment-token -s kibana
Start a kibana instance by following command:
docker run --name kib01 --net elastic -p 5601:5601 openeuler/kibana:latest
When Kibana starts, it outputs a unique generated link to the terminal. To access Kibana, open this link in a web browser.
Question and answering
If you have any questions or want to use some special features, please submit an issue or a pull request on openeuler-docker-images.