Posts

Showing posts with the label Kibana

Install Kibana as Windows Service Using Powershell

This guide installs Kibana as Windows service using Powershell. Kibana: Kibana is an open source data visualization plugin for Elasticsearch . It provides visualization capabilities on top of the content indexed on an Elasticsearch cluster. Users can create bar, line and scatter plots, or pie charts and maps on top of large volumes of data Requirement: Elasticsearch Steps executed in following powershell script: Download NSSM – the Non-Sucking Service Manager $webclient = New-Object System.Net.WebClient $url = "https://nssm.cc/release/nssm-2.24.zip" $file = "$pwd\nssm.zip" $webclient.DownloadFile($url,$file) Unzip NSSM zip file at some location $shell = new-object -com shell.application $zip = $shell.NameSpace("$pwd\nssm.zip") foreach($item in $zip.items()) { $shell.Namespace("C:\").copyhere($item) } Add nssm.exe application path in Environment Variables $env:path +=';C:\nssm-2.24\win64' Download Kibana $webclient = ...