安装及部署

一、环境配置

  • 操作系统: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-;
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 ;
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.;
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

最新文章

  1. 避开unity的坑(转摘)
  2. Validation failed for one or more entities. See 'EntityValidationErrors' property for more details.
  3. MUI - 图片预览(perviewimage)的优化
  4. tyvj 1067 dp 两次LIS(nlogn)
  5. 【LeetCode】 Subsets
  6. xmpp搭建服务器
  7. linux中nginx的安装,linux的版本是ubutu
  8. Tomcat对Struts中的Action进行授权利
  9. element-ui bug及解决方案
  10. [PHP] 控制反转依赖注入的日常使用
  11. Hydra(爆破神器)
  12. Winform 中写代码布局中遇到的控件遮盖问题
  13. 多线程-Callable、Future、FutureTask
  14. Nginx、HAProxy、LVS三者的优缺点
  15. Python全栈开发-Day9-线程/GIL/事件/队列
  16. 打造 Laravel 优美架构 谈可维护性与弹性设计
  17. python使用web.py开发httpserver,解决post请求跨域问题
  18. EXCEPTION-JSTL
  19. 2017ACM/ICPC Guangxi Invitational Solution
  20. L06-Ubuntu系统中部署Vagrant和VirtualBox

热门文章

  1. Selenium for C#的入门Demo
  2. c#调用c++动态链接库的问题
  3. ASP.NET复合控件
  4. 第一章 企业项目开发--maven+springmvc+spring+mybatis+velocity整合
  5. 用Gen8服务器来学习虚拟化ESXI
  6. env.sh
  7. 计算机网络(3)-----IP数据报格式
  8. Linux shell的&&和||
  9. mysql 中execute、executeQuery和executeUpdate之间的区别
  10. 2、android Service 详细用法