mirror of
https://github.com/tborychowski/self-hosted-cookbook.git
synced 2025-06-28 05:15:25 +00:00
Merge branch 'master' of https://github.com/tborychowski/self-hosted-cookbook
* 'master' of https://github.com/tborychowski/self-hosted-cookbook: Update checkmk.md Update checkmk.md Added checkMK monitoring tool (#6) fixes #5
This commit is contained in:
commit
57a49d201a
@ -174,6 +174,7 @@ So, without further ado, here's the current list:
|
||||
- [Dockprom](apps/monitors/dockprom.md)
|
||||
- [PhpServerMonitor](apps/monitors/php-server-monitor.md)
|
||||
- [Statping](apps/monitors/statping.md)
|
||||
- [CheckMK](apps/monitors/checkmk.md)
|
||||
|
||||
### Other, not-fully tested
|
||||
- [Staytus](https://github.com/adamcooke/staytus) 🔗 - service status is updated manually!
|
||||
|
@ -7,6 +7,20 @@ Not too bad. Just stores & tags links, nothing more.
|
||||

|
||||
|
||||
|
||||
## Prerequisite
|
||||
Because of the permission issues with using directory mounts instead of named volumes, the two folders need to be created before running the container:
|
||||
```sh
|
||||
mkdir cache data
|
||||
```
|
||||
and their permissions must be changed to be writable by the shaarli user (Uid 100, Gid 101). The simplest and most convenient (but a bit less secure) is to change permissions to 777 (rwx for all):
|
||||
```sh
|
||||
chmod 777 cache/ data/
|
||||
```
|
||||
alternatively folders' owner can be changed to the UID 100:
|
||||
```sh
|
||||
sudo chown 100:101 cache/ data/
|
||||
```
|
||||
|
||||
## docker-compose.yml
|
||||
```yml
|
||||
---
|
||||
|
36
apps/monitors/checkmk.md
Normal file
36
apps/monitors/checkmk.md
Normal file
@ -0,0 +1,36 @@
|
||||
# CheckMK
|
||||
|
||||
- Pretty complete solution for whole infrastructure monitoring
|
||||
- Based on Nagios
|
||||
- Complex UI (not very intuitive)
|
||||
- Requires "some" learning & setup and doesn't do anything out of the box
|
||||
|
||||
<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
|
||||
container_name: checkmk
|
||||
restart: unless-stopped
|
||||
ulimits:
|
||||
nofile: 1024
|
||||
ports:
|
||||
- "3123:5000"
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- ./monitoring:/omd/sites
|
||||
```
|
||||
|
||||
- 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
|
Loading…
Reference in New Issue
Block a user