shell之路--Zabbix自動部署

來源:互聯網
上載者:User

標籤:zabbix   自動化   

#!/bin/bash

#auto install zabbix

#by max 2017


ZABBIX_SOFT="zabbix-2.0.6.tar.gz"

INSTALL_DIR="/usr/local/zabbix/"

SERVER_IP="192.168.0.100"

IP=`ifconfig|grep Bcast|awk ‘{print $2}‘|sed ‘s/addr://g‘`


SERVER_INSTALL(){

yum -y install curl curl-devel net-snmp net-snmp-devel perl-DBI

groupadd zabbix 

useradd -g zabbix zabbix;usermod -s /sbin/nologin zabbix


tar -xzf $ZABBIX_SOFT

cd `echo $ZABBIX_SOFT|sed ‘s/.tar.*//g‘`

./configure  --prefix=/usr/local/zabbix --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl &&make install

if [ $? -eq 0 ];then

ln -s /usr/local/zabbix/sbin/zabbix_* /usr/local/sbin/

fi


cd - 

cd zabbix-2.0.6

cp  misc/init.d/tru64/{zabbix_agentd,zabbix_server}  /etc/init.d/ 

chmod o+x /etc/init.d/zabbix_*

mkdir -p /var/www/html/zabbix/

cp -a  frontends/php/*  /var/www/html/zabbix/


#config zabbix server 

cat >$INSTALL_DIR/etc/zabbix_server.conf<<EOF

LogFile=/tmp/zabbix_server.log

DBHost=localhost

DBName=zabbix

DBUser=zabbix

DBPassword=123456

EOF

#config zabbix agentd

cat >$INSTALL_DIR/etc/zabbix_agentd.conf<<EOF

LogFile=/tmp/zabbix_agentd.log

Server=$SERVER_IP

ServerActive=$SERVER_IP

Hostname = $IP 

EOF


#start zabbix agentd

/etc/init.d/zabbix_server restart

/etc/init.d/zabbix_agentd restart

/etc/init.d/iptables stop

setenforce 0

}


AGENT_INSTALL(){

yum -y install curl curl-devel net-snmp net-snmp-devel perl-DBI

groupadd zabbix

useradd -g zabbix zabbix;usermod -s /sbin/nologin zabbix


tar -xzf $ZABBIX_SOFT

cd `echo $ZABBIX_SOFT|sed ‘s/.tar.*//g‘`

./configure  --prefix=/usr/local/zabbix  --enable-agent&&make install

if [ $? -eq 0 ];then

ln -s /usr/local/zabbix/sbin/zabbix_* /usr/local/sbin/

fi


cd -

cd zabbix-2.0.6

cp  misc/init.d/tru64/zabbix_agentd  /etc/init.d/zabbix_agentd 

chmod o+x /etc/init.d/zabbix_agentd


#config zabbix agentd

cat >$INSTALL_DIR/etc/zabbix_agentd.conf<<EOF

LogFile=/tmp/zabbix_agentd.log

Server=$SERVER_IP

ServerActive=$SERVER_IP

Hostname = $IP 

EOF


#start zabbix agentd

/etc/init.d/zabbix_agentd restart

/etc/init.d/iptables stop

setenforce 0

}


read -p "Please confirm whether to install Zabbix Server,yes or no?[Y/N] " INPUT

if [ $INPUT == "Y" ];then

SERVER_INSTALL

else

AGENT_INSTALL

fi


shell之路--Zabbix自動部署

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.