Kibana安装及部署

Posted 厚积薄发

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Kibana安装及部署相关的知识,希望对你有一定的参考价值。

安装及部署

一、环境配置

  • 操作系统:Cent OS 7

  • Kibana版本:3.1.2

  • JDK版本:1.7.0_51

  • SSH Secure Shell版本:XShell 5

二、操作过程

1:下载指定版本的Kibana

进入安装目录,并通过curl命令下载Kibana压缩包文件并解压:

  • 下载

curl -L -O https://download.elasticsearch.org/kibana/kibana/kibana-3.1.2.zip
  • 解压

unzip kibana-3.1.2.zip 

2:配置nginx虚拟机主机

http {
    charset utf-8;
    include       mime.types;
    default_type  application/octet-stream;

    log_format  main  $remote_addr - $remote_user [$time_local] $request_time $upstream_response_time "$request" 
                      $status $body_bytes_sent $request_length $bytes_sent "$http_referer" 
                      "$http_user_agent" "$http_x_forwarded_for" "$sent_http_content_range";

    
    server { 
        listen      83; 
        server_name 192.168.1.181; 
        access_log  /usr/local/nginx/logs/kibana.log main; 
        client_max_body_size 5m; 
        index index.html index.htm; 
        autoindex on; 
        root  /usr/local/logdeal/kibana-3.1.2; 
        location / { 
            index index.html index.htm; 
        } 
      }

}

3:更改Elasticsearch的配置文件config.js

elasticsearch: "http://192.168.1.181:9100" #指向elasticsearch访问地址

4:启动nginx,访问kibana地址

/usr/local/logdeal/nginx/sbin/nginx -c /usr/local/logdeal/nginx/conf/nginx_kibana.conf

http://192.168.1.181:83/#/dashboard/file/default.json

以上是关于Kibana安装及部署的主要内容,如果未能解决你的问题,请参考以下文章

Kibana部署及配置

企业日志分析ELK(Logstash+Elasticsearch+Kibana)介绍及搭建

第五章·Kibana入门-安装,索引添加及界面功能

第三十一章 简介及部署(kibana)

windos 环境上安装es Kibana

search-guard环境部署,登录验证,权限配置