This commit is contained in:
G.J.C. Strikwerda 2018-03-22 10:40:17 +01:00
parent b256fe4048
commit 8d43d1a42a
1 changed files with 24 additions and 0 deletions

24
netdata Normal file
View File

@ -0,0 +1,24 @@
howto run netdata (in a docker) monitoring on a server:
disable ipv6:
# vi /etc/sysctl.conf:
net.ipv6.conf.all.disable_ipv6 = 1
net.ipv6.conf.default.disable_ipv6 = 1
rerun sysctl:
# sysctl -p
install docker:
# yum install docker -y
enable/start docker-service:
# systemctl enable docker
# systemctl start docker
run netdata:
# docker run --hostname=cms-fa22 -d --cap-add SYS_PTRACE -v /proc:/host/proc:ro -v /sys:/host/sys:ro -p 19999:19999 titpetric/netdata