본문 바로가기
서버/모니터링

Install Zabbix agent AIX server

by WYYOON 2021. 8. 19.
728x90
반응형
SMALL

1. agent download

https://www.zabbix.com/download

 

2. 그룹 생성

mkgroup zabbix

 

3. 유저 생성 및 그룹 지정

mkuser pgrp='zabbix' groups='zabbix' zabbix

 

4. configuration directory 생성

mkdir /etc/zabbix

 

5. log directory 생성

mkdir /var/log/zabbix/

 

6. log directory 권한 설정

chown -R zabbix:zabbix /var/log/zabbix/

 

7. configuration directory 생성

mkdir -p /usr/local/etc/

 

8. zabbix process file directory 생성

mkdir -p /var/run/zabbix/

 

9. zabbix process files directory 권한 설정

chown -R zabbix:zabbix /var/run/zabbix/

 

10. install zabbix_get and zabbix_sender binary

cp bin/zabbix_* /bin/

 

11. install zabbix_agent and zabbix_agentd binary

cp sbin/zabbix_agent* /sbin/

 

12. copy configuration files

cp -r conf/zabbix_agent* /etc/zabbix/

 

13. link configiguration file

ln -s /etc/zabbix/zabbix_agentd.conf /usr/local/etc/zabbix_agentd.conf

 

14. vi /etc/zabbix/zabbix_agentd.conf 파일 설정 수정

 

15. start zabbix agent

zabbix_agentd

728x90
반응형
SMALL