일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- Windows
- endpoint security
- xe guest utilities
- Elasticsearch
- bash
- application security
- centos 8
- 로그인불가
- hardening
- GitLab
- XCP-ng
- Proxy
- macos
- proxycfg
- docker
- Kibana server is not ready yet
- miniconda
- 보안양파
- Kibana
- elastic stack
- ssh key 배포
- G-suite
- ELASTIC
- 한글가이드
- pfsense
- x-pack
- ansible
- freebsd
- PlayBook
- Today
- Total
선 밖에 선 자유인
Docker-elk 설치 본문
docker-elk 최신 버전을 설치하다 보면 아래와 같이 오류가 나는 경우가 있음
$ git clone https://github.com/deviantony/docker-elk.git
$ cd docker-elk
$ sudo docker-compose up -d
ERROR: Service 'elasticsearch' failed to build: Please provide a source image with `from` prior to commit
Docker 버전 문제로 예상되며 아래의 경로에서 OS별로 최신 docker-ce로 설치
https://hub.docker.com/search/?type=edition&offering=community
CentOS의 경우 기존 docker 제거 후 아래와 같이 재설치
$ sudo yum install -y yum-utils
$ sudo yum-config-manager \
--add-repo \
https://download.docker.com/linux/centos/docker-ce.repo
$ sudo yum-config-manager --enable docker-ce-nightly
$ sudo yum install docker-ce docker-ce-cli containerd.io
$ systemctl start docker
$ sudo docker-compose up -d
Building elasticsearch
Step 1/2 : ARG ELK_VERSION
Step 2/2 : FROM docker.elastic.co/elasticsearch/elasticsearch-oss:6.7.1
6.7.1: Pulling from elasticsearch/elasticsearch-oss
8ba884070f61: Pull complete
...
..