DEV Community

Sashi Kapoor
Sashi Kapoor

Posted on

1

Install Elasticsearch

=======Install Elasticsearch:======
sudo apt update
sudo apt install openjdk-11-jdk

wget -qO - https://artifacts.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -

sudo apt-get install apt-transport-https

echo "deb https://artifacts.elastic.co/packages/7.x/apt stable main" | sudo tee -a /etc/apt/sources.list.d/elastic-7.x.list

sudo apt update
sudo apt install elasticsearch

sudo systemctl enable elasticsearch
sudo systemctl start elasticsearch

**
======Install Kibana::=======**
sudo apt update
sudo apt install kibana
sudo systemctl enable kibana
sudo systemctl start kibana

======Install Logstash:========
sudo systemctl enable logstash
sudo systemctl start logstash

http://localhost:5601

Top comments (0)

Jetbrains image

Is Your CI/CD Server a Prime Target for Attack?

57% of organizations have suffered from a security incident related to DevOps toolchain exposures. It makes sense—CI/CD servers have access to source code, a highly valuable asset. Is yours secure? Check out nine practical tips to protect your CI/CD.

Learn more

👋 Kindness is contagious

Engage with a wealth of insights in this thoughtful article, valued within the supportive DEV Community. Coders of every background are welcome to join in and add to our collective wisdom.

A sincere "thank you" often brightens someone’s day. Share your gratitude in the comments below!

On DEV, the act of sharing knowledge eases our journey and fortifies our community ties. Found value in this? A quick thank you to the author can make a significant impact.

Okay