# ELK-OSS Docker-Compose ``` . ├── docker-compose.yml ├── elasticsearch │ ├── config │ │ └── elasticsearch.yml │ └── data │ └── .empty ├── filebeat │ └── config │ └── filebeat.yml ├── kibana │ └── config │ └── kibana.yml ├── LICENSE ├── logstash │ ├── config │ │ └── logstash.yml │ └── pipeline │ └── logstash.conf └── README.md ``` ```bash # gerneral docker compose docker-compose up -d # installed docker-compose-plugin docker compose up -d # using podman-compose podman-compose up -d ``` # without container 압축파일 다운 및 압축해제 ```bash wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.3.1-linux-x86_64.tar.gz tar -xvf elasticsearch-oss-7.3.1-linux-x86_64.tar.gz ``` 실행 ```bash cd elasticsearch-oss-7.3.1-linux-x86_64 bin/elasticsearch # daemonizer bin/elasticsearch -d ```