Download the Kibana package from:
https://www.elastic.co/download/kibana
Please note:
For kibana package, we need to download the same version with the ES instance which we want to connect.
e.g.
if we are using es 7.6.2 , we should download the kibana 7.6.2
For linux server, we don’t need jdk to startup kibana, it’s written by nodejs…
tar -xf kibana-7.6.2-linux-x86_64.tar.gz
mv kibana-7.6.2-linux-x86_64 kibana
cd kibana
vi ./config/kibana.yml
nohup ./bin/kibana&
due to kibana is written by nodejs, below command will not work
ps -ef | grep kibana
but we know it’s port number is 5601
so we could use netstat command to get the process id which is using port 5601
netstat -tunlp|grep 5601