Install and Setup JDK 8+
cd
yum install wget -y
wget https://download.java.net/java/GA/jdk12.0.1/69cfe15208a647278a19ef0990eea691/12/GPL/openjdk-12.0.1_linux-x64_bin.tar.gz
tar -zxvf openjdk-12.0.1_linux-x64_bin.tar.gz
export JAVA_HOME=/home/ec2-user/d/jdk-12.0.1
export PATH=$PATH:$JAVA_HOME/bin
Download and Install Kibana 7.X
cd
wget https://artifacts.elastic.co/downloads/kibana/kibana-7.2.0-linux-x86_64.tar.gz
tar -xzf kibana-7.2.0-linux-x86_64.tar.gz
Configure Kibana 7.X
cd kibana-7.2.0-linux-x86_64/
vi config/kibana.yml
& change follwing and uncomment it.....
------
# Ip address of server where you are installing Kibana
server.host: "172.31.28.227"
# Ip address of elastic search custor client ip
elasticsearch.hosts: ["http://172.31.11.126:9200"]
How to start kibana service?
# Ip address of server where you are installing Kibana
server.host: "172.31.28.227"
./bin/kibana
OR
nohup ./bin/kibana &
# To see below process for the user which is starting kibana : ps -ef | grep -u user
user 23101 1 0 Mar01 ? 00:21:23 ./../node/bin/node ./../src/cli
Latest posts by Rajesh Kumar (see all)
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024