Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 772 Bytes

Docker安装Kibana.md

File metadata and controls

31 lines (24 loc) · 772 Bytes

一、安装 Docker

CentOS7安装Docker

二、下载 Kibana 镜像

[root@docker1 ~]# docker pull kibana:7.6.2

三、运行

docker run --name kibana -e ELASTICSEARCH_HOSTS=http://自己的IP地址:9200 -p 5601:5601 -d kibana:7.6.2

进入容器修改相应内容

server.port: 5601
server.host: 0.0.0.0
elasticsearch.hosts: [ "http://自己的IP地址:9200" ]
i18n.locale: "Zh-CN"

四、访问

http://自己的IP地址:5601/app/kibana