[설치 환경]
- OS : AIX 5.3
- Zabbix Client : zabbix_agents-1.8.3.aix5300-10.powerpc.tar.gz (Download)
# 설치 과정을 간략히 정리하면,,
2. /sbin 폴더에 zabbix_agentd 데몬 Copy
3. /etc/zabbix 폴더 생성 및 zabbix_agentd.conf 환경파일 Copy
4. zabbix_agentd 데몬 Start
5. zabbix_agentd.conf 환경 등록
1. zabbix 계정 생성
zabbix agentd 디폴트로 실행시에는 'root' 계정에서는 사용이 불가하다.
데몬을 위해 별도의 zabbix 계정을 설치한다.
2. /sbin 폴더에 zabbix_agentd 데몬 Copy
각 플랫폼 버전별로 Pre-compiled 된 agent 를 배포하고 있다.
즉, 별도로 컴파일 할 필요없이 바이너리 형태의 agent 프로그램을 다운받아 바로 사용하면 오케이~
3. /etc/zabbix 폴더 생성 및 zabbix_agentd.conf 환경파일 Copy
PidFile=/etc/zabbix/zabbix_agentd.pid
LogFile=/etc/zabbix/zabbix_agentd.log
Server
Hostname
4. zabbix_agentd 데몬 Start
$/sbin/zabbix_agentd & (zabbix 계정에서 실행)
5. zabbix_agentd.conf 환경 등록
$/sbin/zabbix_agentd -c /etc/zabbix/zabbix_agentd.conf (zabbix 계정에서 실행)
# Zabbix 설치 가이드 중에 Unix용 Agent 설치 부분..
3. Zabbix Agent (UNIX, Standalone daemon)
Zabbix UNIX Agent runs on a host being monitored. The agent provides host's performance and availability information for Zabbix Server. Zabbix Agent processes items of type 'Zabbix Agent' or 'Zabbix Agent (active)'.
Zabbix Agent can be started by executing:
shell> cd sbin
shell> ./zabbix_agentd
Zabbix Agent runs as a daemon process. Zabbix Agent accepts the following command line parameters:
-c --config <file> specify configuration file, default is /etc/zabbix/zabbix_agentd.conf
-h --help give this help
-v --version display version number
-p --print print supported metrics and exit
-t --test <metric> test specified metric and exit
In order to get this help run:
shell> zabbix_agentd -h
Example of command line parameters:
shell> zabbix_agentd -c /usr/local/etc/zabbix_agentd.conf
shell> zabbix_agentd --help
shell> zabbix_agentd --print
shell> zabbix_agentd -t "system.cpu.load[all,avg1]"
'::: 오픈소스 ::: > Zabbix' 카테고리의 다른 글
Zabbix Mysql DB 패스워드 변경 관련 후속조치 (0) | 2012.03.16 |
---|---|
Zabbix 한글 설정 후 그래프 화면의 한글이 깨질 경우 조치방법 (1) | 2011.12.29 |
Zabbix 템플릿 Export/Import 오류 조치방법 (0) | 2011.11.18 |
Zabbix 웹 관리자 화면 한글 설정 방법 (0) | 2011.07.20 |
Fedora13 에 Zabbix Server 1.8.3 설치하기 (자동 설치 스크립트를 이용한 방법) (2) | 2011.01.03 |