How to Install Elasticsearch, Logstash, Filebeat, & Kibana on Ubuntu

ELK stack is the collection of open source products developed by the elastic. The following three things are performed: Collection of data: The user collects the data from different sources Analyze the data: processing the collected data Visualization: denotes the representation of data Prerequisites Ubuntu Server 20.04 LTS Java(JDK) 2 CPU and 4 GB RAM …

Step By Step Guide to Setup Elastic Kubernetes Service with Application Load Balancer on Amazon Web Service

Hello, EKS & ALB are two different services of Amazon Web Service(AWS). In this blog, we are explaining how to setup EKS with ALB on AWS account. There are some steps to setup EKS with ALB using a command line. And we are giving a simple code for testing EKS  with ALB on ubuntu. Using …

How to Create Internet Gateway on Amazon Web Services(AWS).

An internet gateway is a horizontally scaled, redundant, and highly available VPC component that allows communication between your VPC and the internet. An internet gateway supports IPv4 and IPv6 traffic.It does not cause availability risks or bandwidth constraints on your network traffic. An internet gateway serves two purposes: to provide a target in your VPC …

How to Install MySQL 5.7 on Ubuntu 20.04 LTS

Installing MySQL 5.7 on Ubuntu 20.04 Install the required packages. apt-get update apt-get install wget Download and install the MySQL repository package. mkdir /downloads cd /downloads wget https://dev.mysql.com/get/mysql-apt-config_0.8.12-1_all.deb dpkg -i mysql-apt-config_0.8.12-1_all.deb Select the option UBUNTU BIONIC. On the MySQL Server and Cluster screen, select the option MYSQL-5.7. Verify the configuration summary and click on the …

Steps to Install Graphite on Ubuntu 20.04 LTS

Graphite is a free & open source monitoring tool. It is used for highly available and with support for data visualization. Using graphite, we can easily store numeric time-series data & it doesn’t collect data by itself. It receives data from other applications. Graphite contains three software components: carbon – It is a Twisted daemon …