#yum install collectd-nginx
yum 으로 모듈을 설치한 후, 설정 파일(/etc/collectd.d/nginx.conf)을 수정한다.
LoadPlugin nginx
<Plugin nginx>
URL "http://localhost:8080/status?auto"
# User "www-user"
# Password "secret"
# CACert "/etc/ssl/ca.crt"
</Plugin>
그리고 nginx 설정파일(/etc/nginx/conf.d/default.conf)에 다음을 추가한다.(현재 nginx 가 8080 포트를 사용하고 있음)
location /status {
stub_status on;
access_log off;
allow 127.0.0.1;
deny all;
}
nginx 와 collectd 데몬을 재실행한다. 아래와 같이 nginx 항목이 추가되고 그래프가 출력되는지 확인한다.
반응형
'서버 > 리눅스' 카테고리의 다른 글
VMware Server 2.0.2 설치하기 - CentOS 5.9 (가상화 서버 구축) (0) | 2013.05.10 |
---|---|
nginx mp4 pseudo streaming 설정 - Cent OS (0) | 2013.05.03 |
nginx 설치하기 - CentOS 5.x (0) | 2013.05.03 |
collectd-apache 설치하기 - CentOS (0) | 2013.05.02 |
collectd-mysql 설치하기 - CentOS (0) | 2013.05.02 |
댓글