모니터링 도구 · 3 min read · Nov 07, 2025
우분투 22.04에 Netdata 모니터링 도구 설치하는 방법

Netdata는 Linux, macOS 및 FreeBSD를 위한 무료 오픈 소스 성능 및 건강 모니터링 솔루션입니다. 실시간 통계를 제공하며 클라우드 기반 서버, 컨테이너 및 전체 IT 인프라를 모니터링할 수 있습니다. Netdata를 사용하면 메모리 사용량, CPU, 대역폭, 디스크 사용량 등 실시간 시스템 메트릭을 모니터링할 수 있습니다. 또한 Prometheus, Graphite, OpenTSDB, Kafka, Grafana 등 다른 모니터링 도구와 통합할 수 있습니다.
이 튜토리얼에서는 우분투 22.04 서버에 Netdata 모니터링 도구를 설치하는 방법을 보여줍니다.
전제 조건
- 우분투 22.04가 실행되는 서버.
- 서버에 루트 비밀번호가 설정되어 있어야 합니다.
자동화 스크립트를 사용하여 Netdata 설치하기
Netdata를 설치하는 가장 간단하고 쉬운 방법은 자동 설치 스크립트를 사용하는 것입니다.
먼저, 다음 명령어로 curl 유틸리티를 설치합니다:
apt-get install curl -y설치가 완료되면, 다음 명령어로 Netdata 자동 설치 스크립트를 다운로드하고 실행할 수 있습니다:
bash <(curl -Ss https://my-netdata.io/kickstart.sh)Netdata가 설치되면 다음과 같은 출력이 표시됩니다:
Sun Sep 11 01:56:23 PM UTC 2022 : INFO: netdata-updater.sh: Auto-updating has been ENABLED through cron, updater script linked to /etc/cron.daily/netdata-updater
Sun Sep 11 01:56:23 PM UTC 2022 : INFO: netdata-updater.sh: If the update process fails and you have email notifications set up correctly for cron on this system, you should receive an email notification of the failure.
Sun Sep 11 01:56:23 PM UTC 2022 : INFO: netdata-updater.sh: Successful updates will not send an email.
Successfully installed the Netdata Agent.
Official documentation can be found online at https://learn.netdata.cloud/docs/.
Looking to monitor all of your infrastructure with Netdata? Check out Netdata Cloud at https://app.netdata.cloud.
Join our community and connect with us on:
- GitHub: https://github.com/netdata/netdata/discussions
- Discord: https://discord.gg/5ygS846fR6
- Our community forums: https://community.netdata.cloud/
우분투 저장소에서 Netdata 설치하기
기본적으로 Netdata는 우분투 22.04 표준 저장소에 있습니다. 다음 명령어를 실행하여 설치할 수 있습니다:
apt-get install netdata -yNetdata가 설치되면 다음 명령어로 Netdata 서비스를 시작합니다:
systemctl start netdata다음 명령어로 Netdata의 상태를 확인할 수 있습니다:
systemctl status netdata다음과 같은 출력이 표시되어야 합니다:
? netdata.service - Real time performance monitoring
Loaded: loaded (/lib/systemd/system/netdata.service; enabled; vendor preset: enabled)
Active: active (running) since Sun 2022-09-11 13:58:11 UTC; 4s ago
Main PID: 85446 (netdata)
Tasks: 64 (limit: 4579)
Memory: 162.4M
CPU: 2.653s
CGroup: /system.slice/netdata.service
??85446 /usr/sbin/netdata -D -P /var/run/netdata/netdata.pid
??85448 /usr/sbin/netdata --special-spawn-server
??85610 bash /usr/libexec/netdata/plugins.d/tc-qos-helper.sh 1
??85632 /usr/bin/python3 /usr/libexec/netdata/plugins.d/python.d.plugin 1
??85635 /usr/libexec/netdata/plugins.d/apps.plugin 1
??85637 /usr/libexec/netdata/plugins.d/nfacct.plugin 1
??85638 /usr/libexec/netdata/plugins.d/go.d.plugin 1
??85640 /usr/libexec/netdata/plugins.d/ebpf.plugin 1
Sep 11 13:58:11 ubuntu2204 systemd[1]: Started Real time performance monitoring.
Sep 11 13:58:11 ubuntu2204 netdata[85446]: CONFIG: cannot load cloud config '/var/lib/netdata/cloud.d/cloud.conf'. Running with internal defa>
Sep 11 13:58:11 ubuntu2204 netdata[85446]: 2022-09-11 13:58:11: netdata INFO : MAIN : CONFIG: cannot load cloud config '/var/lib/netdata/clo>
Sep 11 13:58:13 ubuntu2204 ebpf.plugin[85640]: Does not have a configuration file inside `/etc/netdata/ebpf.d.conf. It will try to load stock>
Sep 11 13:58:13 ubuntu2204 ebpf.plugin[85640]: Name resolution is disabled, collector will not parser "hostnames" list.
Sep 11 13:58:13 ubuntu2204 ebpf.plugin[85640]: The network value of CIDR 127.0.0.1/8 was updated for 127.0.0.0 .
Sep 11 13:58:13 ubuntu2204 ebpf.plugin[85640]: Cannot read process groups configuration file '/etc/netdata/apps_groups.conf'. Will try '/usr/>
이 시점에서 Netdata가 설치되었고 포트 19999에서 수신 대기 중입니다. 다음 명령어로 확인할 수 있습니다:
ss -antpl | grep 19999다음과 같은 출력이 표시되어야 합니다:
LISTEN 0 4096 0.0.0.0:19999 0.0.0.0:* users:(("netdata",pid=85446,fd=5))
LISTEN 0 4096 [::]:19999 [::]:* users:(("netdata",pid=85446,fd=6))
작업이 완료되면 다음 단계로 진행할 수 있습니다.
Netdata 웹 인터페이스에 접근하기
이제 웹 브라우저를 열고 URL http://your-server-ip:19999를 사용하여 Netdata 웹 인터페이스에 접근합니다. 다음 화면에서 Netdata 웹 인터페이스를 볼 수 있어야 합니다:

RAM

Load

Network

Uptime

결론
축하합니다! 우분투 22.04 서버에 Netdata를 성공적으로 설치했습니다. 이제 클라이언트 머신에 Netdata 에이전트를 설치하고 Netdata 웹 대시보드에서 시스템 리소스를 모니터링할 수 있습니다. 질문이 있으면 언제든지 문의해 주세요.
새 게시물을 받은 편지함에서 받기
스팸은 없습니다. 언제든지 구독 해지 가능합니다.