Skip to content

Instantly share code, notes, and snippets.

View broland07's full-sized avatar
🏠
Working from home

Balla Roland broland07

🏠
Working from home
View GitHub Profile
# System
- dstat - Combines vmstat, iostat, ifstat, netstat information and more.
- lsof - List open files by processes.
- dstat - Combines vmstat, iostat, ifstat, netstat information and more
# Network
- dig - DNS lookup.
- ping - The ping command sends echo requests to the host you specify on the command line, and lists the responses received their round trip time.
- traceroute - traceroute will show the route of a packet. It attempts to list the series of hosts through which your packets travel on their way to a given destination.
- nslookup - nslookup command also use to find out DNS related query.
@broland07
broland07 / es-1-docker-compose.yml
Created March 25, 2023 15:12
Elasticsearch simple 3 node cluster on 3 machine with docker-compose
version: "3.8"
services:
es-1:
image: docker.elastic.co/elasticsearch/elasticsearch:7.8.0
volumes:
- ./elasticsearch.yml:/usr/share/elasticsearch/config/elasticsearch.yml
ports:
- "9200:9200"
- "9300:9300"
ulimits: