윈도우, 안드로이드 폰에서도 작동된다.
# 맥에서 다음과 같이 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:
# /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
sudo pip install bottle
glances -w
http://0.0.0.0:61208 로 웹 모니터링 페이지를 볼수 있다.
http://0.0.0.0:61208 로 웹 모니터링 페이지를 볼수 있다.
comments:
댓글 쓰기