2021-01-07 19:19:33 +00:00
|
|
|
# CheckMK
|
|
|
|
|
|
|
|
- Pretty complete solution for whole infrastructure monitoring
|
|
|
|
- Based on Nagios
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
- [Homepage](https://checkmk.com/)
|
|
|
|
- [Github repo](https://github.com/tribe29/checkMK)
|
|
|
|
- [DockerHub repo](https://hub.docker.com/r/checkmk/check-mk-raw)
|
|
|
|
|
|
|
|
|
|
|
|
## docker-compose.yml
|
|
|
|
```yml
|
|
|
|
---
|
|
|
|
version: '3.6'
|
|
|
|
|
|
|
|
services:
|
|
|
|
checkmk:
|
|
|
|
image: checkmk/check-mk-raw
|
2021-01-08 10:41:16 +00:00
|
|
|
container_name: checkmk
|
|
|
|
restart: unless-stopped
|
2021-01-07 19:19:33 +00:00
|
|
|
ulimits:
|
|
|
|
nofile: 1024
|
2021-01-08 10:41:16 +00:00
|
|
|
ports:
|
|
|
|
- "3123:5000"
|
2021-01-07 19:19:33 +00:00
|
|
|
volumes:
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2021-01-08 10:41:16 +00:00
|
|
|
- ./monitoring:/omd/sites
|
2021-01-07 19:19:33 +00:00
|
|
|
```
|
|
|
|
|
2021-01-08 10:41:16 +00:00
|
|
|
- Open http://localhost:8080/cmk/check_mk/
|
|
|
|
- Username is `cmkadmin`
|
|
|
|
- Password is written in the logs when the container starts the first time, so just run `docker-compose logs` after starting the container
|