Installation and deployment one, environment configuration
Second, operation process 1: Download the specified version of the Kibana
Go to the installation directory and download the Kibana compressed package file and unzip it via the Curl command:
Curl-l-O Https://download.elasticsearch.org/kibana/kibana/kibana-3.1.2.zip
Unzip Kibana-3.1.2.zip
2: Configure Nginx Virtual Machine host
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 the; server_name192.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: Change the configuration file for Elasticsearch config.js
Elasticsearch: "http://192.168.1.181:9100" #指向elasticsearch访问地址
4: Start Nginx, access Kibana address
/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 Installation and Deployment