博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Kibana SSL
阅读量:4358 次
发布时间:2019-06-07

本文共 1775 字,大约阅读时间需要 5 分钟。

Kibana SSL
官方网站:
自签名证书
Kibana 同时支持对客户端请求以及 Kibana 服务器发往 Elasticsearch 的请求做 SSL 加密
CA,服务器证书创建步骤请参看
配置SSL

root@jlive:~#cat /opt/kibana-4.5.0-linux-x64/config/kibana.yml

server.port: 5601

server.host: "192.168.130.254"

elasticsearch.url: "http://192.168.8.10:9200"

kibana.index: ".kibana"

server.ssl.key: /opt/kibana-4.5.0-linux-x64/kibana-server.key

server.ssl.cert: /opt/kibana-4.5.0-linux-x64/kibana-server.pem

ca: /opt/kibana-4.5.0-linux-x64/kibana-ca.pem

启服务

root@jlive:~#/opt/kibana-4.5.0-linux-x64/bin/kibana 

  log   [19:54:30.455] [info][status][plugin:kibana] Status changed from uninitialized to green - Ready

  log   [19:54:30.481] [info][status][plugin:elasticsearch] Status changed from uninitialized to yellow - Waiting for Elasticsearch

  log   [19:54:30.492] [info][status][plugin:kbn_vislib_vis_types] Status changed from uninitialized to green - Ready

  log   [19:54:30.499] [info][status][plugin:markdown_vis] Status changed from uninitialized to green - Ready

  log   [19:54:30.503] [info][status][plugin:metric_vis] Status changed from uninitialized to green - Ready

  log   [19:54:30.506] [info][status][plugin:spyModes] Status changed from uninitialized to green - Ready

  log   [19:54:30.533] [info][status][plugin:statusPage] Status changed from uninitialized to green - Ready

  log   [19:54:30.536] [info][status][plugin:table_vis] Status changed from uninitialized to green - Ready

  log   [19:54:30.546] [info][listening] Server running at https://192.168.130.254:5601

  log   [19:54:35.664] [info][status][plugin:elasticsearch] Status changed from yellow to yellow - No existing Kibana index found

  log   [19:54:59.854] [info][status][plugin:elasticsearch] Status changed from yellow to green - Kibana index ready

可以看到已经kibana URL已经变为https

转载于:https://www.cnblogs.com/lixuebin/p/10814093.html

你可能感兴趣的文章
apache使用总结
查看>>
getopt、getopt_long 简介
查看>>
Linux eject 命令
查看>>
Python 常用函数
查看>>
作为布尔表达式的时候会被解释器当做False的值
查看>>
linux 网络编程:客户端与服务器通过TCP协议相互通信 + UDP
查看>>
程序人生之我们的故事:十年如歌(9)
查看>>
用户体验之“双语标签”
查看>>
IOS打包和发布简单介绍
查看>>
scp ssh 拷贝文件夹
查看>>
JavaScript学习05 定时器
查看>>
CSS
查看>>
Ubuntu 11.04安装GCC 4.6.1
查看>>
甲骨论
查看>>
C# 集合类-接口
查看>>
InstallShield Limited Edition for Visual Studio 2013 图文教程(教你如何打包.NET程序)
查看>>
基于visual Studio2013解决面试题之1004最长等差数列
查看>>
联系方式
查看>>
基于visual Studio2013解决C语言竞赛题之0707月份输出
查看>>
【leetcode】Triangle
查看>>