레이블이 glances인 게시물을 표시합니다. 모든 게시물 표시
레이블이 glances인 게시물을 표시합니다. 모든 게시물 표시

glances monitoring

glances 는 unix 계열에서 기본적으로 사용하는 모니터링 프로그램인 top 과 비슷하다.
윈도우, 안드로이드 폰에서도 작동된다.

# 맥에서 다음과 같이 pip 로 설치시
pip install glances

# 다음과 같이 디렉토리를 생성하지 못해 에러가 발생한다.
"error: could not create '/System/Library/Frameworks/Python.framework/Versions/2.7/share': Operation not permitte"

# 이때는 --user 옵션을 주어 현재 사용자 로컬 위치에 설치하자.
# /Users/ysoftman/Library/Python/2.7/lib/python/site-packages/glances
# /Users/ysoftman/Library/Python/2.7/bin
# 환경 추가
# export PATH=$PATH:~/Library/Python/2.7/bin:
pip install --user glances

# 최근엔 brew 로도 설치할 수 있다.
brew install glances

# 실행
glances

# 웹서버 모드로 실행(bottle 이 설치되어 있어야 한다.)
sudo pip install bottle
glances -w

http://0.0.0.0:61208 로 웹 모니터링 페이지를 볼수 있다.