This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |
OlderNewer