开源监控解决方案:ZABBIX部署实录

安装 Apache HTTP Server 

[[email protected] ~]# groupadd apache
[[email protected] ~]# useradd apache -g apache -s /bin/nologin
[[email protected] ~]# tar zxvf apr-1.6.3.tar.gz 
[[email protected] ~]# cd apr-1.6.3
[[email protected] apr-1.6.3]# ./configure --prefix=/usr/local/apr
[[email protected] apr-1.6.3]# make
[[email protected] apr-1.6.3]# make install
[[email protected] ~]# tar zxvf apr-util-1.6.1.tar.gz
[[email protected] apr-util-1.6.1]# ./configure --with-apr=/usr/local/apr/bin/apr-1-config
[[email protected] apr-util-1.6.1]# make
[[email protected] apr-util-1.6.1]# make install
[[email protected] ~]# tar zxvf pcre-8.41.tar.gz
[[email protected] ~]# cd pcre-8.41
[[email protected] pcre-8.41]# ./configure 
[[email protected] pcre-8.41]# make
[[email protected] pcre-8.41]# make install
[[email protected] ~]# tar zxvf httpd-2.4.29.tar.gz
[[email protected] ~]# cd httpd-2.4.29
[[email protected] httpd-2.4.29]# ./configure --prefix=/usr/local/apache --sysconfdir=/etc/httpd --enable-ssl --enable-so --enable-cgi --enable-rewrite --with-pcre --with-zlib --enable-modules=most --enable-mods-shared=most --enable-mpms-shared=all --with-mpm=worker --with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr/bin/apu-1-config
[[email protected] httpd-2.4.29]# make
[[email protected] httpd-2.4.29]# make install
[[email protected] ~]# vi /etc/httpd/httpd.conf
PidFile  "/var/run/httpd.pid"
ServerName 192.168.1.201:80
User apache
Group apache
[[email protected] ~]# vi /etc/init.d/httpd
#!/bin/bash
 #
 # httpd        Startup script for the Apache HTTP Server
 #
 # chkconfig: - 85 15
 # description: Apache is a World Wide Web server.  It is used to serve  #        HTML files and CGI.
 # processname: httpd
 # config: /etc/httpd/conf/httpd.conf
 # config: /etc/sysconfig/httpd
 # pidfile: /var/run/httpd.pid
# Source function library.
 . /etc/rc.d/init.d/functions
if [ -f /etc/sysconfig/httpd ]; then
         . /etc/sysconfig/httpd
 fi
# Start httpd in the C locale by default.
 HTTPD_LANG=${HTTPD_LANG-"C"}
# This will prevent initlog from swallowing up a pass-phrase prompt if
 # mod_ssl needs a pass-phrase from the user.
 INITLOG_ARGS=""
# Set HTTPD=/usr/sbin/httpd.worker in /etc/sysconfig/httpd to use a server
 # with the thread-based "worker" MPM; BE WARNED that some modules may not
 # work correctly with a thread-based MPM; notably PHP will refuse to start.
# Path to the apachectl script, server binary, and short-form for messages.
 apachectl=/usr/local/apache/bin/apachectl
 httpd=${HTTPD-/usr/local/apache/bin/httpd}
 prog=httpd
 pidfile=${PIDFILE-/var/run/httpd.pid}
 lockfile=${LOCKFILE-/var/lock/subsys/httpd}
 RETVAL=0
start() {
         echo -n $"Starting $prog: "
         LANG=$HTTPD_LANG daemon --pidfile=${pidfile} $httpd $OPTIONS
         RETVAL=$?
         echo
         [ $RETVAL = 0 ] && touch ${lockfile}
         return $RETVAL
 }
stop() {
   echo -n $"Stopping $prog: "
   killproc -p ${pidfile} -d 10 $httpd
   RETVAL=$?
   echo
   [ $RETVAL = 0 ] && rm -f ${lockfile} ${pidfile}
 }
 reload() {
     echo -n $"Reloading $prog: "
     if ! LANG=$HTTPD_LANG $httpd $OPTIONS -t >&/dev/null; then
         RETVAL=$?
         echo $"not reloading due to configuration syntax error"
         failure $"not reloading $httpd due to configuration syntax error"
     else
         killproc -p ${pidfile} $httpd -HUP
         RETVAL=$?
     fi
     echo
 }
# See how we were called.
 case "$1" in
   start)
   start
   ;;
   stop)
   stop
   ;;
   status)
         status -p ${pidfile} $httpd
   RETVAL=$?
   ;;
   restart)
   stop
   start
   ;;
   condrestart)
   if [ -f ${pidfile} ] ; then
     stop
     start
   fi
   ;;
   reload)
         reload
   ;;
   graceful|help|configtest|fullstatus)
   $apachectl [email protected]
   RETVAL=$?
   ;;
   *)
   echo $"Usage: $prog {start|stop|restart|condrestart|reload|status|fullstatus|graceful|help|configtest}"
   exit 1
 esac
exit $RETVAL

[[email protected] ~]# chmod a+x /etc/init.d/httpd
[[email protected] ~]# chkconfig --add httpd
[[email protected] ~]# service httpd start
Starting httpd:                                            [  OK  ]
[[email protected] ~]# service httpd status
httpd (pid  2724) is running...
[[email protected] ~]# netstat -tunlp | grep httpd
tcp        0      0 :::80                       :::*                        LISTEN      2724/httpd

安装MySQL  Server(略)


安装PHP

[[email protected] ~]# yum install -y gcc libjpeg libpng freetype libjpeg-devel libpng-devel freetype-devel libxml2-devel libcurl-devel

[[email protected] ~]# tar zxvf php-5.5.30.tar.gz
[[email protected] ~]# cd php-5.5.30
[[email protected] php-5.5.30]# ./configure --prefix=/usr/local/php --with-config-file-path=/etc --with-apxs2=/usr/sbin/apxs --with-mysql=/usr/local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-pdo-mysql=/usr/local/mysql --with-mysql-sock=/tmp/mysql.sock --with-libxml-dir --with-gettext --with-gd --with-curl --with-freetype-dir --with-jpeg-dir --with-png-dir --enable-bcmath --enable-mbstring --enable-ctype --enable-xml --enable-sockets --enable-shared --disable-ipv6

[[email protected] php-5.5.30]# make && make install
[[email protected] php-5.5.30]# cp php.ini-production /etc/php.ini
[[email protected] php-5.5.30]#  vi /etc/php.ini 
date.timezone = Asia/Shanghai
max_execution_time = 300  
max_input_time = 300
post_max_size = 32M
memory_limit = 128M
mbstring.func_overload = off

原文地址:http://blog.51cto.com/13598811/2097609

时间: 2024-10-04 02:47:18

开源监控解决方案:ZABBIX部署实录的相关文章

企业级开源监控软件zabbix

最快速的对一个开源软件有一定的认识和了解,最好的方法就是看官网介绍. ------付炜超 第一问:zabbix是什么? 答:Zabbix是专为监控的可用性和IT基础设施组件的性能极限的企业级软件,Zabbix是开源的,是在没有成本 第二问:zabbix可以干什么? 答:Zabbix它可以收集几乎无限的类型从网络数据.高性能实时监控意味着数以万计的服务器.虚拟机和网络设备可以同时监测.随着存储数据,可视化功能是可用的(概述.地图.图表.屏幕等),以及非常灵活的分析预警目的数据的方法. 第三问:为什

开源监控解决方案:Observium部署实录

[[email protected] ~]# rpm -ivh https://mirror.webtatic.com/yum/el6/latest.rpm [[email protected] ~]# rpm -ivh epel-release-6-8.noarch.rpm  [[email protected] ~]# rpm -ivh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm [[email protected] ~]# rpm -ivh htt

开源监控解决方案:Cacti部署实录

[[email protected] ~]# rpm -ivh epel-release-6-8.noarch.rpm  [[email protected] ~]# rpm -ivh rpmforge-release-0.5.3-1.el6.rf.x86_64.rpm [[email protected] ~]# yum install -y httpd php php-mysql php-gd libjpeg libjpeg-devel libpng libpng-devel  [[emai

开源监控解决方案:Icinga(Nagios)部署实录

[[email protected] ~]# rpm -ivh http://repo.mysql.com/mysql-community-release-el6-5.noarch.rpm [[email protected] ~]# yum install -y mysql-community-server [[email protected] ~]# vi /etc/my.cnf [mysqld] port = 3306 user = mysql character-set-server=u

开源监控解决方案Nagios+Cacti+PNP4Nagios+NConf+NDOUtils+Nagvis(一)介绍

以nagios为核心.伴以多款开源软件来进行的整合部署,从而实现监控信息图形化.web页面定义监控配置.监控信息存储.图形化监控主机和服务等一系列功能的解决方案. pnp4nagios是基于RRD轮循(环状)数据库中所提供的综合信息,以可视化图形的方式呈现给用户的一款nagios插件:nconf是基于PHP使用户通过web页面实现对nagios各项属性进行配置,诸如模板定义.添加修改监控的主机/服务等操作:ndoutils可以导出nagios通过SNMP捕获到的当前和历史数据并存储到MySQL数

Linux中详细搭建监控服务zabbix部署

1.Linux服务器安装zabbix监控平台 zabbix是基于web界面的开源分布式监控平台,可以监控各种服务器的配置参数,支持自定义配置和自定义告警,并且可以实现邮件.短信等方式的告警,zabbix基本组件如下: zabbix_server:zabbix服务端守护进程,所有的监控数据都会统一汇总给server zabbix_agentd:客户端守护进程,负责执行server命令,收集客户端各种参数,如cpu负载,内存,硬盘io等 zabbix_get:zabbix的一个工具,通常用于从ser

监控服务zabbix部署(server端)

zabbix介绍zabbix是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案.zabbix能监视各种网络参数,保证服务器系统的安全运营:并提供灵活的通知机制以让系统管理员快速定位/解决存在的各种问题.zabbix由2部分构成,zabbix server与可选组件zabbix agentzabbix server可以通过SNMP,zabbix agent ,ping,端口监视等方法提供对远程服务器/网络状态的监视,数据收集等功能,它可以运行在Linux,Ubuntu,

监控服务zabbix部署

Zabbix是什么? 'zabbix'是基于web界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案. 'zabbix能监视各种网络参数,保证服务器系统的安全运营:并提供灵活的通知机制让系统管理员快速定位并解决问题' Zabbix组成1.zabbix server 通过SNMP.zabbix agent .ping, 端口监视等方法提供对远程服务器/网络状态的监视,数据收集等功能 运行在linux\Ubuntu\Solaris\HP-UX\AIX\Free BSD\Open BSD\

监控之zabbix部署

环境: zabbix server:192.168.1.1 mysql server:192.168.1.2 web server:192.168.1.3 一.zabbix编译安装 1.同时安装server和agent,并支持将数据库放入mysql数据中,可使用类似如下配置命令:     ./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp     >  --with-libcu