zabbix 1.8 과 2.0 버 전의 일반적인 설치 스 크 립 트

zabbix 로 서버 를 감시 한 지 2 년 이 넘 었 습 니 다.서버 측의 설치 배치 스 크 립 트 를 이미 썼 습 니 다.지금 꺼 내 서 여러분 과 공유 하 겠 습 니 다.zabbix 1.8 과 2.0 버 전의 일반적인 설치 스 크 립 트 입 니 다.기본 버 전 은 1.8.9 버 전 입 니 다.2.0 이상 의 버 전 을 설치 하려 면 zabbix 의 설치 패 키 지 를 교체 하면 됩 니 다.다른 것 은 변 하지 않 습 니 다.설치 에 사용 할 패키지:http://down.51cto.com/data/556418이 위 치 는 다운로드 할 수도 있 고 스 크 립 트 에 사용 되 는 소프트웨어 에 따라 스스로 다운로드 할 수도 있 습 니 다.설치 후 브 라 우 저 열기:http://192.168.8.11/zabbixzabbix 초기 화 를 진행 합 니 다.기본적으로 실행 환경 을 검사 하 는 것 입 니 다.다음 단 계 를 누 르 면 완성 할 수 있 습 니 다.오류 가 있 으 면 알림 에 따라 설정 을 수정 하면 됩 니 다.스 크 립 트 는 다음 과 같 습 니 다:
 
   
   
   
   
  1. #/bin/sh 
  2. mkdir -p /home/soft 
  3. unzip zabbix.zip -d /home/soft/ 
  4.  
  5. cd /home/soft/ 
  6. tar -zxf libpng-1.2.16.tar.gz 
  7. cd libpng-1.2.16
  8. ./configure --prefix=/usr/local --enable-shared 
  9. make && make install 
  10.  
  11. cd /home/soft/ 
  12. tar -zxf libiconv-1.11.tar.gz 
  13. cd libiconv-1.11
  14. ./configure --prefix=/usr/local --enable-shared --enable-static 
  15. make && make install 
  16.  
  17. cd /home/soft/ 
  18. tar -zxf jpegsrc.v6b.tar.gz 
  19. cd jpeg-6b
  20. ./configure --enable-static --enable-shared --prefix=/usr/local 
  21. make && make install 
  22.  
  23. cd /home/soft/ 
  24. tar -zxf freetype-2.3.1.tar.gz 
  25. cd freetype-2.3.1
  26. ./configure --prefix=/usr/local --enable-shared 
  27. make && make install 
  28.  
  29. cd /home/soft/ 
  30. tar -zxf curl-7.17.1.tar.gz 
  31. cd curl-7.17.1
  32. ./configure --prefix=/usr/local --enable-shared 
  33. make && make install 
  34.  
  35. cd /home/soft/ 
  36. tar -zxf gd-2.0.34.tar.gz 
  37. cd gd-2.0.34
  38. ./configure --prefix=/usr/local --enable-shared --with-png=/usr/local --with-freetype=/usr/local --with-libiconv-prefix=/usr/local --with-jpeg=/usr/local 
  39. make && make install 
  40.  
  41. cd /home/soft/ 
  42. tar -zxf httpd-2.2.21.tar.gz 
  43. cd httpd-2.2.21
  44. ./configure --prefix=/usr/local/apache --enable-so --enable-rewrite --enable-deflate --enable-cache --enable-file-cache --enable-mem-cache --enable-disk-cache --enable-ssl --with-ssl=/usr/include/openssl --enable-mods-shared=all 
  45. make && make install 
  46. groupadd apache 
  47. useradd -g apache apache 
  48. cp /usr/local/apache/bin/apachectl /etc/rc.d/init.d/httpd 
  49. chmod 755 /etc/rc.d/init.d/httpd 
  50. echo '# chkconfig: 2345 85 15' >> /etc/rc.d/init.d/httpd 
  51. mv /usr/local/apache/conf/httpd.conf /usr/local/apache/conf/httpd.conf.bak 
  52. cp /home/soft/httpd.conf /usr/local/apache/conf/httpd.conf 
  53. echo '# description: httpd is a World Wide Web Server' >> /etc/rc.d/init.d/httpd 
  54. chkconfig --add httpd 
  55. chkconfig httpd on 
  56. echo "127.0.0.1 `hostname`">>/etc/hosts 
  57. service httpd restart 
  58.  
  59.  
  60. cd /home/soft/ 
  61. groupadd mysql 
  62. useradd -g mysql mysql 
  63. mv /home/mysql /data1/ 
  64. ln -s /data1/mysql /home/mysql 
  65. tar -zxf mysql-5.1.59-linux-i686-glibc23.tar.gz -C /usr/local/ 
  66. mv /usr/local/mysql-5.1.59-linux-i686-glibc23/ /usr/local/mysql/ 
  67. mkdir -p /usr/local/mysql/etc/ 
  68. chown -R mysql.mysql /usr/local/mysql 
  69. cd /usr/local/mysql/ 
  70. ./scripts/mysql_install_db --no-defaults 
  71. cd /home/soft/ 
  72. cp -rp /usr/local/mysql/data/mysql /data1/mysql/data/ 
  73. chown -R mysql.mysql /data1/mysql 
  74. mkdir -p /usr/lib/mysql/ 
  75. ln -s /usr/local/mysql/lib/* /usr/lib/mysql/ 
  76. ln -s /usr/local/mysql/bin/* /usr/bin/ 
  77. echo "/usr/local/mysql/lib" >> /etc/ld.so.conf 
  78. ldconfig 
  79. cp /home/soft/mysqld /etc/init.d/ 
  80. chmod +x /etc/init.d/mysqld 
  81. chkconfig --add mysqld 
  82. chkconfig --level 345 mysqld on 
  83. service mysqld start 
  84. mysqladmin -uroot password zabbix 
  85. mysql -pzabbix -e "GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'zabbix';update mysql.user set password=password('zabbix') where user='root';flush privileges;" 
  86. #mysql -pzabbix -e "UPDATE zabbix.items SET history=7;" 
  87. # , 。 
  88.  
  89. # snmp , snmp , yum  
  90. #echo "baseurl=ftp://10.14.23.235/snmp">> /etc/yum.repos.d/as.repo 
  91. #yum install net-snmp-devel -y 
  92.  
  93. cd /home/soft/ 
  94. tar -zxf php-5.2.17.tar.gz 
  95. ln -s  /usr/local/lib/libiconv.so.2 /usr/lib/libiconv.so.2 
  96. ln -s /usr/local/lib/libcurl.so.4 /usr/lib/libcurl.so.4 
  97. cd /home/soft/php-5.2.17/; 
  98. ./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-mysql=/usr/local/mysql --with-apxs2=/usr/local/apache/bin/apxs --with-ttf --with-freetype-dir=/usr/local --with-iconv-dir=/usr/local --with-curl=/usr/local --with-zlib --with-gettext --with-libxml-dir=/usr/local --with-gd=/usr/local --with-png-dir --enable-mbstring --enable-exif --enable-force-cgi-redirect --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-calendar --enable-gd-native-ttf --enable-gd-jis-conv --disable-debug --disable-path-info-check --enable-soap --silent --enable-sockets --with-openssl --enable-bcmath --with-gettext --with-jpeg-dir=/usr/local 
  99. # snmp  --with-snmp 
  100. #--enable-bcmath --with-gettext GD   , zabbix2.0  
  101. make && make install 
  102. mkdir -p /usr/local/php/etc 
  103. cp /home/soft/php.ini /usr/local/php/etc/ 
  104.  
  105. cd /home/soft/ 
  106. tar -zxf zabbix-1.8.9.tar.gz 
  107. cd zabbix-1.8.9 
  108. ./configure --prefix=/usr/local/zabbix --enable-server --enable-agent --with-mysql=/usr/local/mysql/bin/mysql_config --with-libcurl && make && make install 
  109. # snmp --with-net-snmp   --enable-proxy  
  110. mkdir -p /etc/zabbix 
  111. cp /home/soft/zabbix_* /etc/zabbix/ 
  112. #110 111 2.0 , zabbix /usr/local/zabbix/etc/ ,
  113. cd /home/soft/ 
  114. groupadd zabbix 
  115. useradd zabbix -g zabbix 
  116. mysql -uroot -pzabbix -e "create database zabbix character set utf8;" 
  117. cd /home/soft/zabbix-1.8.9
  118. mysql -uroot -pzabbix zabbix 
  119. mysql -uroot -pzabbix zabbix 
  120. mysql -uroot -pzabbix zabbix 
  121. #zabbix2.0 , ,  
  122. #mysql -uroot -pzabbix zabbix  
  123. #mysql -uroot -pzabbix zabbix  
  124. #mysql -uroot -pzabbix zabbix  
  125.  
  126. cp -r /home/soft/zabbix-1.8.9/frontends/php /usr/local/apache/htdocs/zabbix 
  127. cp /home/soft/zabbix-server /etc/init.d/zabbix-server 
  128. cp /home/soft/zabbix-agentd /etc/init.d/zabbix-agentd 
  129. chmod +x /etc/init.d/zabbix* 
  130. chkconfig --add zabbix-agentd  
  131. chkconfig --add zabbix-server 
  132. chkconfig --level 345 zabbix-server on 
  133. chkconfig --level 345 zabbix-agentd  on 
  134. cp /home/soft/simhei.ttf /usr/local/apache/htdocs/zabbix/fonts/ 
  135. sed -i 's/DejaVuSans/simhei/g' /usr/local/apache/htdocs/zabbix/include/defines.inc.php 
  136. # , 。 
  137.  
  138. echo "zabbix-agent    10050/tcp  #Zabbix Agent">>/etc/services 
  139. echo "zabbix-agent    10050/udp  #Zabbix Agent">>/etc/services 
  140. echo "zabbix-trapper  10051/tcp  #Zabbix Trapper">>/etc/services 
  141. echo "zabbix-trapper  10051/udp  #Zabbix Trapper">>/etc/services  

zabbix 클 라 이언 트 의 설치 가 비교적 간단 합 니 다.
1:linux 시스템
zabbix 패키지 다운로드,zabbix 패키지 압축 풀기:
cd /home/soft/zabbix-1.8.11/ ./configure --prefix=/usr/local/zabbix --enable-agent && make && make install
...에 있다http://down.51cto.com/data/556418이 위 치 는 그의 프로필 과 서비스 파일 의 템 플 릿 이 있 습 니 다.제 가 수정 한 것 이 므 로 직접 사용 할 수 있 습 니 다.
/usr/sbin/groupadd zabbix
/usr/sbin/useradd zabbix -g zabbix
/sbin/chkconfig --add zabbix-agentd
/sbin/chkconfig --level 345 zabbix-agentd  on
echo "zabbix-agent    10050/tcp  #Zabbix Agent">>/etc/services
echo "zabbix-agent    10050/udp  #Zabbix Agent">>/etc/services
/etc/init.d/zabbix-agentd restart
2:windows 엔 드 의 설치:
 zabbix 의 windows 패 키 지 를 다운로드 하고 zabbix 패 키 지 를 압축 해제 합 니 다.windows 엔 드 의 프로필 은 Liux 와 마찬가지 로 아래 의 설치 zabbix 를 서비스 로 실행 합 니 다.C:\zabbix\zabbixagentd.exe -c C:\zabbix\zabbix_agentd.conf -i net start "Zabbix Agent" @pause  

좋은 웹페이지 즐겨찾기