self-hosted-cookbook/apps/monitors/checkmk.md

35 lines
779 B
Markdown
Raw Normal View History

# 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
ulimits:
nofile: 1024
2021-01-08 10:41:16 +00:00
ports:
- "3123:5000"
volumes:
- /etc/localtime:/etc/localtime:ro
2021-01-08 10:41:16 +00:00
- ./monitoring:/omd/sites
```
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