사용자 도구

사이트 도구


system_monitoring

문서의 이전 판입니다!


System monitoring tool

Htop

sudo apt install htop

Glances

sudo pip install glances

# gpu 모니터링 (print 함수 사용하도록 수정된 버전)
sudo pip install git+https://github.com/jonsafari/nvidia-ml-py.git

서비스 등록

vi /etc/systemd/system/glances.service

/// glances.service 에 입력
[Unit]
Description=Glances

[Service]
ExecStart=/usr/local/bin/glances -s
Restart=on-abort

[Install]
WantedBy=multi-user.target
///

sudo systemctl enable glances.service
sudo systemctl start glances.service

# 확인
sudo systemctl -a | grep glances

Ganglia

서버 설치

sudo apt-get install -y ganglia-monitor rrdtool gmetad ganglia-webfrontend

sudo cp /etc/ganglia-webfrontend/apache.conf /etc/apache2/sites-enabled/ganglia.conf

# 아파치 재시작
sudo service apache2 restart

클라이언트 설치

GPU 모니터링

system_monitoring.1491374717.txt.gz · 마지막으로 수정됨: 2024/03/23 02:37 (바깥 편집)