1. EPEL에서 설치

dnf install -y epel-release
dnf --enablerepo=epel -y install netdata

2. 다른 호스트에서 웹 접속 허용

vi /etc/netdata/netdata.conf

bind to = 0.0.0.0

:wq

systemctl start netdata ; systemctl enable netdata

3. 방화벽 설정

# 1. 방화벽 끄기
systemctl stop firewalld ; systemctl disable firewalld

# 2. 방화벽 정책 추가
firewall-cmd --add-port=19999/tcp
firewall-cmd --runtime-to-permanaent

4. 웹 접속

http://ip:19999

image.png