2016年12月15日木曜日

zabbix3.2 ソースからインストール

1) ここ(http://www.zabbix.com/download)の Zabbix Sourcesから、zabbix-3.2.2.tar.gzをダウンロードして解凍。


2)configureを起動してインストール

# cd zabbix-3.2.2
# ./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl --with-libxml2

エラーがでるので対処。
# yum install mysql-devel
# yum install libxml2-devel
# yum -y install net-snmp net-snmp-devel
# yum -y install curl libcurl libcurl-devel

# make install


zabbixサーバとエージェントを起動
$ zabbix_server

$ zabbix_agentd

0 件のコメント:

コメントを投稿

zabbix7 amazon linux2023 インストール postgres15

【postgres】 dnf -y install postgresql15-server postgresql15-server-devel postgresql-setup initdb passwd postgres vi `find / -name pg_hba.con...