[설치 환경]

- OS : AIX 5.3
- Zabbix Client : zabbix_agents-1.8.3.aix5300-10.powerpc.tar.gz  (Download)



# 설치 과정을 간략히 정리하면,,

1. zabbix 계정 생성
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 설치 부분..

출처  :   http://www.zabbix.com/documentation/1.8/manual/processes/zabbix_agentd



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]"




 

+ Recent posts