Deploying ELK Stack with Docker for Log Management
Docker Installation of Elasticsearch
For most production environments, Elasticsearch is pre-installed on servers. If you need to set it up yourself, Docker provides the easiest method.
Pull the Docker image:
docker pull docker.elastic.co/elasticsearch/elasticsearch:7.5.2
Create and start the container:
docker run -d --name elasticsearch-node - ...
Posted on Sun, 02 Aug 2026 16:50:54 +0000 by wayz1229
Building a Logging System with Docker, Elasticsearch, Logstash, and Kibana
Overview
This guide walks through setting up a centralized logging system using the ELK stack (Elasticsearch, Logstash, Kibana) with Docker Compose. The configuration collects appliaction logs, processes them via Logstash, stores them in Elasticsearch, and visualizes them in Kibana.
1. Define the docker-compose.yaml File
Create a docker-compose ...
Posted on Tue, 28 Jul 2026 16:10:51 +0000 by XiaoRulez
EFK Stack: Docker-Based Log Analysis with Elasticsearch, Kibana, and Filebeat
Ensure Docker and Docker Compose are installed on your system before proceeding.
Docker Compose Configuration
Below is the docker-compose.yaml file for the EFK stack:
version: '3.3'
services:
elasticsearch:
image: "docker.elastic.co/elasticsearch/elasticsearch:7.17.5"
container_name: es-primary
restart: always
environment:
...
Posted on Wed, 22 Jul 2026 17:08:25 +0000 by justphpdev
Building a Scalable Log Processing Pipeline with Filebeat, Kafka, Logstash, and Elasticsearch
Distributed log processing systems are essential for modern application monitoring and analysis. A common approach involves using Filebeat for log collection, Kafka as a message buffer, Logstash for transformation, Elasticsearch for storage, and Kibana for visualization. Grafana can also integrate with Elasticsearch for real-time monitoring das ...
Posted on Fri, 15 May 2026 04:29:59 +0000 by wgh
Nginx Reverse Proxy Configuration for Common Services
Consul Web UI Proxy Setup
location ~ ^/ui {
auth_basic "Authentication Required";
auth_basic_user_file /etc/nginx/passwd.db;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_pass http://localhost:8500;
}
Kibena Dashbo ...
Posted on Wed, 13 May 2026 23:41:48 +0000 by sherri