服务器维护,服务器代维,安全设置,漏洞扫描,入侵检测服务

dirtysea 发表于 2010-7-28 16:48:10

监控软件-Zabbix配置安装详解

<P>&nbsp;zabbix是一个基于WEB界面的提供分布式系统监视以及网络监视功能的企业级的开源解决方案。 zabbix能监视各种网络参数,保证服务器系统的安全运营;并提供柔软的通知机制以让系统管理员快速定位/解决存在的各种问题。<BR>zabbix由2部分构成,zabbix server与可选组件zabbix agent。<BR>zabbix server可以通过SNMP,zabbix agent,ping,端口监视等方法提供对远程服务器/网络状态的监视,数据收集等功能,它可以运行在Linux, Solaris, HP-UX, AIX, Free BSD, Open BSD, OS X等平台之上。<BR>zabbix agent需要安装在被监视的目标服务器上,它主要完成对硬件信息或与操作系统有关的内存,CPU等信息的收集。zabbix agent可以运行在Linux ,Solaris, HP-UX, AIX, Free BSD, Open BSD, OS X, Tru64/OSF1, Windows NT4.0, Windows 2000/2003/XP/Vista)等系统之上。<BR>zabbix server可以单独监视远程服务器的服务状态;同时也可以与zabbix agent配合,可以轮询zabbix agent主动接收监视数据(trapping方式),同时还可被动接收zabbix agent发送的数据(trapping方式)。<BR>另外zabbix server还支持SNMP (v1,v2),可以与SNMP软件(例如:net-snmp)等配合使用。<BR>zabbix的主要特点:<BR>- 安装与配置简单,学习成本低<BR>- 支持多语言(包括中文)<BR>- 免费开源<BR>- 自动发现服务器与网络设备<BR>- 分布式监视以及WEB集中管理功能<BR>- 可以无agent监视<BR>- 用户安全认证和柔软的授权方式<BR>- 通过WEB界面设置或查看监视结果<BR>- email等通知功能<BR>等等<BR>Zabbix主要功能:<BR>- CPU负荷<BR>- 内存使用<BR>- 磁盘使用<BR>- 网络状况<BR>- 端口监视<BR>- 日志监视<BR></P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>server端侦听在10051端口,客户端侦听在10050端口。用户界面使用php开发。数据存储在MySQL里面。安装几次都要重新看,目前将Zabbix配置安装进行整理如下<BR>Zabbix配置需要web、php、mysql、gcc等支持 <BR>请自行配置好 </P>
<P>yum -y install gcc httpd mysql mysql-server php* mysql-connector-odbc mysql-devel libdbi-dbd-mysql net-snmp net-snmp-devel net-snmp net-snmp-devel</P>
<P>rdate -s time-b.nist.gov&nbsp; 设置准确时间</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P><BR>接下来我们开始操作 <BR>操作范例的操作系统为Centos 5.2</P>
<P>zabbix的官方站点:<A href="http://www.zabbix.com/">http://www.zabbix.com/</A></P>
<P>&nbsp;</P>
<P>tar zxvf zabbix-1.8.2.tar.gz</P>
<P>cd zabbix-1.8.2</P>
<P>&nbsp;</P>
<P>mysql -uroot -p </P>
<P>mysql&gt; create database zabbix;&nbsp; &nbsp;</P>
<P>mysql&gt; GRANT ALL PRIVILEGES ON zabbix.*&nbsp; TO zabbix@localhost IDENTIFIED BY 'zabbix'&nbsp; WITH GRANT OPTION;</P>
<P>mysql&gt; use zabbix;&nbsp; &nbsp;</P>
<P>mysql&gt; source create/schema/mysql.sql </P>
<P>mysql&gt; source create/data/data.sql&nbsp; &nbsp;</P>
<P>mysql&gt; source create/data/images_mysql.sql </P>
<P>&nbsp;</P>
<P>&nbsp;./configure --prefix=/opt/zabbix/ --enable-server --enable-agent --with-mysql --with-net-snmp<BR></P>
<P>./configure --prefix=/opt/zabbix/ \&nbsp;&nbsp;//指定安装目录 <BR>--enable-server \&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;//安装server,被监控节点不需要 <BR>--enable-agent \&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;//安装agent <BR>--with-mysql \&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; //需要mysql支持需要指定目录 <BR>--with-net-snmp&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;//需要snmp支持需要指定目录 <BR>常用的编译选项如下,需要更多的可以看帮助 <BR></P>
<UL class=litype_1 type=1>–enable-static&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;Build statically linked binaries&nbsp; &nbsp; </UL>
<P>–enable-server&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;Turn on build of server&nbsp; &nbsp;–enable-proxy&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; Turn on build of proxy server </P>
<P>–enable-agent&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp; Turn on build of agent&nbsp; &nbsp;–enable-ipv6&nbsp; &nbsp;&nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;Turn on support of IPv6 </P>
<P>–with-mysql&nbsp; &nbsp;–with-oracle </P>
<P>–with-pgsql&nbsp; &nbsp;–with-sqlite3 </P>
<P>–with-jabber&nbsp; &nbsp;–with-net-snmp </P>
<P>–with-ucd-snmp</P><BR>Zabbix配置客户端只需执行: <BR>./configure --prefix=/usr/local/zabbix --enable-agent <BR>make &amp;&amp; make install<BR>Zabbix配置安装过程没有报错基本就OK,接下来增加对应的端口:<BR>vi /etc/services <BR>加入
<P><SPAN style="COLOR: #000000"><SPAN class=hilite1>zabbix-agent&nbsp;&nbsp;&nbsp; 10050/tcp&nbsp; Zabbix Agent<BR>zabbix-agent&nbsp;&nbsp;&nbsp; 10050/udp&nbsp; Zabbix Agent<BR>zabbix-trapper&nbsp; 10051/tcp&nbsp; Zabbix Trapper<BR>zabbix-trapper&nbsp; 10051/udp&nbsp; Zabbix Trapper</SPAN></SPAN></P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><BR>Zabbix配置回到zabbix的编译目录:</P>
<P>&nbsp;</P>
<P><SPAN style="COLOR: #000000">配置文件</SPAN></P>
<P><SPAN style="COLOR: #000000">mkdir /etc/zabbix<BR>groupadd zabbix<BR>useradd -g zabbix zabbix<BR>chown -R zabbix.zabbix /etc/zabbix/<BR>cp misc/conf/* /etc/zabbix/</SPAN><SPAN style="COLOR: #000000"></SPAN></P>
<P><SPAN style="COLOR: #000000"><SPAN style="COLOR: #000000"><SPAN style="COLOR: #000000">&nbsp;</P>
<P><SPAN style="COLOR: #000000">vi&nbsp;/etc/<SPAN class=hilite1>zabbix</SPAN>/zabbix_server.conf &nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">ListenPort=<SPAN class=number>10051</SPAN>&nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">DBHost=localhost &nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">DBName=<SPAN class=hilite1>zabbix</SPAN> &nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">DBUser=<SPAN class=hilite1>zabbix</SPAN>&nbsp;&nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">DBPassword=<SPAN class=hilite1>zabbix</SPAN>&nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">DBSocket=/tmp/mysql.sock&nbsp;&nbsp;&nbsp;</SPAN></P></SPAN></SPAN></SPAN>
<P><SPAN style="COLOR: #000000">ListenIP=192.168.1.11</SPAN></P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000">vi /etc/zabbix/zabbix_agent.conf<BR>Server=192.168.1.11</SPAN></P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000">vi frontends/php/include/db.inc.php (可以不修改)<BR>更改数据库相关内容: <BR>$DB_TYPE ="MYSQL";&nbsp;&nbsp;&nbsp; <BR>$DB_SERVER ="localhost";&nbsp;&nbsp; <BR>$DB_DATABASE ="zabbix"; <BR>$DB_USER ="zabbix";&nbsp;&nbsp; $DB_PWD ="zabbix"; </SPAN></P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P><SPAN style="COLOR: #000000">
<P><SPAN style="COLOR: #000000">复制<SPAN class=hilite1>zabbix</SPAN></SPAN></P>
<P><SPAN style="COLOR: #000000">mkdir /var/www/html/zabbix</SPAN><SPAN style="COLOR: #000000"><BR>cp -Rpf frontends/php/* /var/www/html/zabbix</SPAN></P></SPAN>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000">复制启动程序<BR>cp misc/init.d/redhat/zabbix_server_ctl /etc/init.d/zabbix_server<BR>cp misc/init.d/redhat/zabbix_agentd_ctl /etc/init.d/zabbix_agentd</SPAN></P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000">cp /opt/zabbix/bin/* /opt/zabbix/sbin/</SPAN></P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000">分别在两个脚本的 #!/bin/sh 后加入如下两行注释,注意要行前要加“#” </SPAN></P>
<P><SPAN style="COLOR: #000000"># chkconfig: - 95 95<BR># description: Zabbix Server</SPAN></P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P><SPAN style="COLOR: #000000">
<P><SPAN style="COLOR: #000000">vi&nbsp;/etc/init.d/zabbix_server&nbsp;</SPAN>&nbsp;&nbsp;</P>
<P><SPAN style="COLOR: #000000"># chkconfig: - 95 95<BR># description: Zabbix Server</SPAN></P>
<P><SPAN style="COLOR: #000000">#&nbsp;base&nbsp;<SPAN class=hilite1>zabbix</SPAN>&nbsp;dir &nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">BASEDIR=/opt/<SPAN class=hilite1>zabbix</SPAN> &nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">#&nbsp;PID&nbsp;file &nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">PIDFILE=/var/tmp/zabbix_server.pid &nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">#&nbsp;binary&nbsp;file &nbsp;&nbsp;</SPAN> </P>
<P><SPAN style="COLOR: #000000">ZABBIX_SUCKERD=$BASEDIR/sbin/zabbix_server&nbsp;&nbsp;</SPAN>&nbsp;&nbsp;&nbsp; (修改执行文件路径)</P></SPAN>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000"><SPAN style="COLOR: #000000">vi /etc/init.d/zabbix_agentd&nbsp;</SPAN></SPAN></P>
<P><SPAN style="COLOR: #000000"><SPAN style="COLOR: #000000"></SPAN></SPAN><SPAN style="COLOR: #000000"><SPAN style="COLOR: #000000"><SPAN style="COLOR: #000000"># chkconfig: - 95 95<BR># description: Zabbix Server</SPAN></SPAN></SPAN></P>
<P><SPAN style="COLOR: #000000"><SPAN style="COLOR: #000000"># base zabbix dir<BR>BASEDIR=/opt/zabbix<BR># pid file (as of 1.0 beta 10)<BR>PIDFILE=/var/tmp/zabbix_agentd.pid<BR># binary file<BR>ZABBIX_AGENTD=$BASEDIR/sbin/zabbix_agentd&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (修改执行文件路径)</SPAN></SPAN></P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P><SPAN style="COLOR: #000000"></SPAN>&nbsp;</P>
<P>自启动 <BR>chkconfig --add zabbix_server<BR>chkconfig --add zabbix_agentd<BR>chkconfig zabbix_server on<BR>chkconfig zabbix_agentd on<BR></P><SPAN style="COLOR: #000000">
<P>
<P><SPAN style="COLOR: #000000"></SPAN></P></SPAN>
<P></P>
<P><BR>注:gd-devel没有安装上去将无法在web端安装过去,对应的其他也要安装,比如net-snmp,可通过yum来安装,方便。<BR></P>
<UL class=litype_1 type=1>#rpm -qa|grep gd&nbsp; &nbsp; </UL>
<P>gd-devel-2.0.33-9.4.el5_1.1 </P>
<P>gd-2.0.33-9.4.el5_1.1</P>
<P><BR>安装php-bcmath <BR>yum -y install php-bcmath </P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>启动zabbix服务<BR>/etc/init.d/zabbix_server start<BR>/etc/init.d/zabbix_agentd start</P>
<P>或者</P>
<P><SPAN style="FONT-SIZE: 12pt; mso-font-kerning: 0pt">#/opt/zabbix/sbin/zabbix_server -c /etc/zabbix/zabbix_server.conf</SPAN></P>
<P><SPAN style="FONT-SIZE: 12pt; mso-font-kerning: 0pt"></SPAN><SPAN style="FONT-SIZE: 12pt; mso-font-kerning: 0pt">#/opt/zabbix/sbin/zabbix_agentd -c /etc/zabbix/zabbix_agentd.conf</SPAN><SPAN style="FONT-SIZE: 12pt; mso-font-kerning: 0pt"></SPAN></P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>由于 zabbix 使用 fping 替代了 ping 作为 icmp 的工具,所以要安装 fping<BR>可以从 http://fping.sourceforge.net/ 上下载 fping 的源代码,解压编译安装。<BR>** fping 解压后的源代码目录<BR>./configure<BR>make install<BR>修改/etc/zabbix/zabbix_server.conf<BR>FpingLocation=/usr/local/sbin/fping<BR></P>
<P>&nbsp;</P>
<P><BR>二。Zabbix配置访问web:http://localhost/zabbix进行安装</P>
<P><BR>php环境需求 </P>
<UL class=litype_1 type=1>PHP version:&nbsp;&nbsp;5.2.8 Ok&nbsp; &nbsp; </UL>
<P>PHP Memory limit: 128M Ok&nbsp; &nbsp;PHP post max size: 8M Ok </P>
<P>PHP max execution time: 300 sec Ok&nbsp; &nbsp;PHP Databases support:&nbsp;&nbsp;MySQL Ok </P>
<P>PHP BC math support yes Ok&nbsp; &nbsp;GD Version: bundled (2.0.34 compatible) Ok </P>
<P>Image formats: PNG Ok </P>
<P>PHP Timezone: Asia/Shanghai</P>
<P><BR>修改时区及其它最小参数要求 <BR>Vi&nbsp;&nbsp;/etc/php.ini <BR>date.timezone =Asia/Shanghai</P>
<P>&nbsp;</P>
<P>&nbsp;</P>
<P>如果是server端,需要修改/etc/zabbix中的zabbix_server.conf、zabbix_trapper.conf两个文件,主要是配置一些路径、IP、端口、数据库信息等等;如果是agent端,需要修改/etc/zabbix中的zabbix_agent.conf、zabbix_agentd.conf两个文件,也是配置类似的相关信息,这些都比较简单不用详说。</P>
<P>在agent端服务器上需要通过/data/app/zabbix/bin/zabbix_agentd来启动agent进程,在server端通过/data/app/zabbix/bin/zabbix_server来启动server进程,如果发生错误可以查看指定的log文件来分析。</P>
<P>最后我们需要在server端来配置web脚本的环境,拷贝frontends/php目录的脚本到web文件目录,并修改include/db.inc.php中的数据库连接信息。</P>
<P>&nbsp;</P>
<P></P>
<P>安装完成后,打开浏览器,就可以进行zabbix设置了。</P>
<P><FONT size=2><BR></FONT>&nbsp;</P>
<P>第一次登录的时候,管理员登录名为admin,初始密码为zabbix。</P>
<P><FONT size=2>**登陆页面<BR>输入管理用户名:admin 默认口令 zabbix 登陆。**Configuration -》Hosts 选择 Zabbix Server 然后 Activate Select,Zabbix Server (本机)的监控激活。** Monitoring Dashboard,可以看到 Zabbix Server 的监控结果</FONT></P>
<P>&nbsp;</P>
<P><FONT color=blue size=2>ps:有可能在前端运行是显示zabbix_server is running---no,此时在系统管理里面把selinux项关掉就可以了。</FONT></P>
<P>&nbsp;</P>
<P>我们要做的第一件事,是添加管理用户。</P>
<P>1.点击Configurations &gt;&gt; Users。右上角有个下拉列表,可选择创建用户或者用户组。创建用户的时候,可指定用户使用的语言。创建完用户后,会发现Actions栏位有Media,点击可创建警告通知的邮件。建议将用户分组,这样可指定警告消息的群发地址。</P>
<P><BR>2.接下来创建主机:点击Configurations &gt;&gt; Hosts。右上角有个下拉列表,可选择创建:主机,主机组,模板,应用组,以及查看模板链接。建议对主机进行分组,可把监控项目分配给组,这样就不用为每一台主机创建监控项目了。</P>
<P><BR>3.主机组和主机创建完成后,接着创建监控项目:点击Configurations &gt;&gt; Items。可以为每一台主机创建一个监控项,也可以在创建监控项的时候,点击页面最下方的do按钮,这样可把这个监控项应用到所选的组。监控项的类型很丰富,可以创建zabbix agent自带的项,也可创建SNMP的项,以及自扩展定义的项。</P>
<P><BR>4.创建触发器:点击Configurations &gt;&gt; Triggers。触发器是指被监控项所满足的条件,当条件为真时可触发定义的动作,同时系统会记录这些事件。可以为每台主机创建触发器,也可以为模板创建触发器。关于创建触发器的语法见http://www.zabbix.com/manual/v1.1/config_triggers.php。</P>
<P>5.创建动作:点击Configurations &gt;&gt; Actions。动作用于当触发器条件为真时所执行的操作,有两种操作:发送消息和执行命令。关于创建动作可用的变量请参考http://www.zabbix.com/manual/v1.1/config_actions.php。</P>
<P>这些事项完成后就可以收集基本的系统信息了,点击Monitoring &gt;&gt; Latest data可以看到最新收集到的数据。</P>
<P><BR>6.模板(Templates)和应用组(Applications)的说明</P>
<P>模板(Configurations &gt;&gt; Hosts里可创建模板,是为某种具有共同监控目的的主机快速定义和修改监控操作的方法。假设有100台机器,如果为每台机器都手工创建监控项目、触发器、图表,非得累趴下不可。你可以定义一个模板,为该模板创建监控项目、触发器和图表。然后创建主机的时候,让它和这个模板建立链接。这样这些机器就不用再创建这些条目了。</P>
<P>应用组(Configurations &gt;&gt; Hosts里可创建应用组,主要用于监控项分组和权限分配。比如可为机器定义Network应用组,该组可加入网络入口量、网络出口量等监控项目。然后在Monitoring &gt;&gt; Latest data就可以以分组的方式查看这些数据。此外,还可以把这些数据的查看分配给不同的用户。</P>
<P>&nbsp;</P>
<P></P>
<P>三、可视化功能</P>
<P>1.地图功能:Configurations &gt;&gt; Map</P>
<P>你可以在此建立具有某种逻辑关系的地图,比如网络拓扑。每个节点可能为一台服务器,工作站,路由器或者网络。节点与节点之间可建立连接线。连通性可用触发器来计算,当触发器为真时可定义红线,为假时可定义绿线,这样一旦问题发生时就能通过连接线的颜色看出来。</P>
<P><BR>2.图表功能:Configurations &gt;&gt; Graphs</P>
<P>你可以把监控项目的趋势绘制成曲线图,或者把几台机器的某项监控项目绘制在一张图,这样更便于比对。这种趋势图是通过图表的功能实现的。</P>
<P><BR>3.屏幕图功能:Configurations &gt;&gt; Screens</P>
<P>屏幕图是指把若干个图形元素(比如地图,图表)或者非图形元素(统计表,文字)放在n行m列的单元格中,便于一起比对监控。</P>
<P></P>
<P>4.系统评估功能:</P>
<P>系统评估功能是对监控软件的监控报告进行统计,它包括zabbix状态、服务器可用统计、警告统计、触发器触发统计等功能,便于管理人员的系统的运行状态进行分析统计。</P>
<P></P>
<P>5.主机资料功能:</P>
<P>该功能用于企业使用的服务器资料的存档,包括操作系统版本、机器系列号、标签、MAC地址IP地址等,便于系统管理员保存主机资料</P>
<P></P>
<P>6.告警功能:</P>
<P>zabbix告警主要通过触发器触发实现的,它的告警方式有EMAIL告警、电话告警、短信告警,在新版的1.4版本还可通过桌面jabber进行报警。多种告警方式便于系统管理人员及时发现系统发生的问题。</P>
<P>7.系统安全功能:既有密码MD5加密,完整的用户权限分配功能及用户的登陆操作审计功能。</P>
<P></P>
<P></P>
<P></P>
<P>我厂使用zabbix软件已一年多了,通过该软件,我厂已实现服务器监控、Oracle数据库、db2数据库、Sqlserver数据库的监控,通过snmp trap实现与趋势杀毒软件的集成及存储的自动报警、通过扩展脚本实现企业运用系统的监控和报警,目前采集数据已达到</P>

dirtysea 发表于 2010-8-13 16:58:45

错误集

错误 写道启动 错误
/etc/init.d/zabbix_server_ctl start
/etc/zabbix/sbin/zabbix_server: error while loading shared libraries: libmysqlclient.so.15: cannot open shared object file: No such file or directory

cp /usr/lib/mysql/libmysqlclient.so /lib
/etc/init.d/zabbix_server_ctl start
/etc/init.d/zabbix_server_ctl start: zabbix_server started

编译 ./configure --enable-server --enable-agent --with-mysql --with-net-snmp --prefix=/usr/local/
zabbix
错误configure: error: Invalid NET-SNMP directory - unable to find net-snmp-config

安装 net-snmp 包
yum install net-snmp net-snmp-devel



错误configure: error: MySQL library not found
yum -y install mysql-connector-odbc mysql-devel libdbi-dbd-mysql




ubuntu系统
1 configure: error: MySQL library not found
the problem is not installed mysql-devel
#apt-get installlibghc6-hsql-mysql-dev (ubuntu )
2 configure: error: Jabber library not found
the problem is not installed jabber lib
#apt-get install libphp-jabber
#apt-get install libnet-jabber-loudmouth-perl
#apt-get install jabber-dev
#apt-get install libiksemel-dev(* this packet important)
3 configure: error: Not found curl Library
the problem is not installed libcurl4-openssl-dev
#apt-get install libcurl4-openssl-dev
4 configure: error : Not found NET-SNMP library
#apt-get install libsnmp-dev
#apt-get install snmp

dirtysea 发表于 2010-8-24 18:06:27

<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l2 level1 lfo1" class=MsoListParagraph><A name=_Toc253564247><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>一、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT size=3 face=Calibri>Zabbix</FONT></SPAN></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564247"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">简介</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是一个企业级的开源分布式监控解决方案,由一个国外的团队持续维护更新,软件可以自由下载使用,运作团队靠提供收费的技术支持赢利。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">官方网站:</SPAN><SPAN lang=EN-US><A href="http://www.zabbix.com/"><FONT face=Calibri>http://www.zabbix.com</FONT></A></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix 1.8</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">官方文档:</SPAN><SPAN lang=EN-US><A href="http://www.zabbix.com/documentation/1.8/start"><FONT face=Calibri>http://www.zabbix.com/documentation/1.8/start</FONT></A></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>C/S</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">模式采集数据,通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>B/S</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">模式在</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">端展示和配置。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">被监控端:主机通过安装</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">方式采集数据,网络设备通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>SNMP</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">方式采集数据</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">端:通过收集</SPAN><SPAN lang=EN-US><FONT face=Calibri>SNMP</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">和</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">发送的数据,写入</SPAN><SPAN lang=EN-US><FONT face=Calibri>MySQL</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">数据库,再通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>php+apache</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">前端展示。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">运行条件:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">需运行在</SPAN><SPAN lang=EN-US><FONT face=Calibri>LAMP</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(</SPAN><SPAN lang=EN-US><FONT face=Calibri>Linux+Apache+Mysql+PHP</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)环境下,对硬件要求低</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">目前已有的</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">基本支持市面常见的</SPAN><SPAN lang=EN-US><FONT face=Calibri>OS</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,包含</SPAN><SPAN lang=EN-US><FONT face=Calibri>Linux</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>HPUX</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>Solaris</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>Sun</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>windows</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>SNMP</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>支持各类常见的网络设备</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l2 level1 lfo1" class=MsoListParagraph><A name=_Toc253564248><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>二、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT size=3 face=Calibri>Zabbix</FONT></SPAN></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564248"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">功能</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l0 level1 lfo2" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">具备常见的商业监控软件所具备的功能(主机的性能监控、网络设备性能监控、数据库性能监控、</SPAN><SPAN lang=EN-US><FONT face=Calibri>FTP</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">等通用协议监控、多种告警方式、详细的报表图表绘制)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l0 level1 lfo2" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>支持自动发现网络设备和服务器</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l0 level1 lfo2" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>支持分布式,能集中展示、管理分布式的监控点</FONT></SPAN></DIV>
<DIV style="TEXT-ALIGN: left; TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l0 level1 lfo2; mso-layout-grid-align: none" class=MsoListParagraph align=left><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">扩展性强,</SPAN><SPAN lang=EN-US><FONT face=Calibri>server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">提供通用接口,可以自己开发完善各类监控</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l2 level1 lfo1" class=MsoListParagraph><A name=_Toc253564249><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>三、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>优劣势</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>优点:</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>开源,无软件成本投入</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">对设备性能要求低(实际测试环境:虚拟机</SPAN><SPAN lang=EN-US><FONT face=Calibri>Redhat EL AS5</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,</SPAN><SPAN lang=EN-US><FONT face=Calibri>2GCPU 1G</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">内存,监控</SPAN><SPAN lang=EN-US><FONT face=Calibri>5</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">台设备,</SPAN><SPAN lang=EN-US><FONT face=Calibri>CPU</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">使用率基本保持在</SPAN><SPAN lang=EN-US><FONT face=Calibri>10%</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">以下,内存剩余</SPAN><SPAN lang=EN-US><FONT face=Calibri>400M</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">以上)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>支持设备多</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>支持分布式集中管理</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo3" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>开放式接口,扩展性强</FONT></SPAN></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt 21pt" class=MsoNormal><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>缺点:</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l3 level1 lfo4" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>全英文,界面不友好</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l3 level1 lfo4" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>无厂家支持,出现问题解决比较麻烦</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l3 level1 lfo4" class=MsoListParagraph><SPAN style="FONT-FAMILY: wingdings; mso-fareast-font-family: wingdings; mso-bidi-font-family: wingdings" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3>l</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp; </SPAN></SPAN></SPAN><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">需在被监控主机上安装</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l3 level1 lfo4" class=MsoListParagraph><FONT size=3 face=Calibri><SPAN lang=EN-US></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 42pt; mso-char-indent-count: 0; mso-list: l3 level1 lfo4" class=MsoListParagraph><FONT size=3 face=Calibri><SPAN lang=EN-US>
<H2 style="MARGIN: 13pt 0cm"><A name=_Toc253564250><SPAN lang=EN-US><FONT face=Cambria><U>Part2.</U></FONT></SPAN></A><SPAN style="mso-bookmark: _toc253564250"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: cambria; mso-ascii-theme-font: major-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: major-fareast; mso-hansi-font-family: cambria; mso-hansi-theme-font: major-latin">安装部署</SPAN></SPAN></H2>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564251><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>一、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>服务端环境准备</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">需要运行在</SPAN><SPAN lang=EN-US><FONT face=Calibri>CentOS</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>RedHat Linux</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>Debain</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">等</SPAN><SPAN lang=EN-US><FONT face=Calibri>Linux</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">系统上,这里以</SPAN><SPAN lang=EN-US><FONT face=Calibri>RHEL AS5</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">作为部署环境。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Root</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">用户安装必须的包,建议配置好</SPAN><SPAN lang=EN-US><FONT face=Calibri>yum</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>yum</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">安装下列包,解决包的依赖关系。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>LAMP</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">环境</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#yum install mysql-server httpd php</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>其他需要用到的包:</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#yum install mysql-dev gcc net-snmp-devel curl-devel perl-DBI php-gd php-mysql php-bcmath php-mbstring php-xml</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; COLOR: black; FONT-SIZE: 11pt; mso-font-kerning: 0pt; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 宋体" lang=EN-US><o:p>&nbsp;</o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下载最新的</SPAN><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">安装包</SPAN><SPAN lang=EN-US><FONT face=Calibri>(</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">官网</SPAN><SPAN lang=EN-US><FONT face=Calibri>:http://www.zabbix.com)</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">到本地,解压</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; COLOR: black; FONT-SIZE: 11pt; mso-font-kerning: 0pt; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 宋体" lang=EN-US><o:p>&nbsp;</o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#tar zxvf zabbix-1.8.1.tar.gz</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">增加</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">用户和组</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#groupadd zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#useradd –g zabbix –m zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564252><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>二、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>数据库准备</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">启动</SPAN><SPAN lang=EN-US><FONT face=Calibri>MySQL</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">数据库:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#service mysqld start</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>MySQL root</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">用户密码</SPAN><SPAN lang=EN-US><FONT face=Calibri>(</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">默认密码为空</SPAN><SPAN lang=EN-US><FONT face=Calibri>)</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#mysqladmin –u root –p password root</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>测试能否正常登陆数据库</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#mysql –uroot –proot</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建</SPAN><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">数据库</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>Mysql&gt; create database zabbix character set utf8;</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; COLOR: black; FONT-SIZE: 11pt; mso-font-kerning: 0pt; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 宋体" lang=EN-US><o:p>&nbsp;</o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; COLOR: black; FONT-SIZE: 11pt; mso-font-kerning: 0pt; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 宋体">导入数据库<SPAN lang=EN-US>sql</SPAN>脚本<SPAN lang=EN-US><o:p></o:p></SPAN></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; COLOR: black; FONT-SIZE: 11pt; mso-font-kerning: 0pt; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 宋体" lang=EN-US><o:p>&nbsp;</o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>#cd zabbix-1.8.1</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3><FONT face=Calibri># cat ./create/schema/mysql.sql |mysql -uroot -proot zabbix<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></FONT></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3><FONT face=Calibri># cat ./create/data/data.sql |mysql -uroot -proot zabbix<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></FONT></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3><FONT face=Calibri># cat ./create/data/images_mysql.sql |mysql -uroot -proot zabbix<SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN></FONT></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; COLOR: black; FONT-SIZE: 11pt; mso-font-kerning: 0pt; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin; mso-bidi-font-family: 宋体" lang=EN-US><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564253><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>三、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>编译安装</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">配置编译,</SPAN><SPAN lang=EN-US><FONT face=Calibri>prefix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是安装后程序目录</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># ./configure --with-mysql --with-net-snmp --with-libcurl --enable-server --enable-agent --enable-proxy --prefix=/usr/local/zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># make</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># make install</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564254><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>四、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">配置文件及</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN></FONT></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564254"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">前端文件修改</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加服务端口</SPAN><SPAN lang=EN-US><FONT face=Calibri>,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加后如下</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># grep zabbix /etc/services</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>zabbix-agent<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>10050/tcp<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN># Zabbix Agent</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>zabbix-agent<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>10050/udp<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN><SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</SPAN># Zabbix Agent</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri>zabbix-trapper<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>10051/tcp<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN># Zabbix Trapper</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>zabbix-trapper<SPAN style="mso-spacerun: yes">&nbsp; </SPAN>10051/udp<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN># Zabbix Trapper</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>添加配置文件</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># mkdir -p /etc/zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># cp ./misc/conf/* /etc/zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># chown -R zabbix:zabbix /etc/zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">配置文件</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">基本不用修改,用默认配置即可,只需修改一项</SPAN><SPAN lang=EN-US><FONT face=Calibri>DBPassword=</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">密码</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># vi /etc/zabbix/zabbix_server.conf</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>Agentd</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">配置文件</SPAN><SPAN lang=EN-US><FONT face=Calibri>,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">更改</SPAN><SPAN lang=EN-US><FONT face=Calibri>HOST NAME </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">为本机的</SPAN><SPAN lang=EN-US><FONT face=Calibri>hostname</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">就好了</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#vi /etc/zabbix/zabbix_agentd.conf</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">前端</SPAN><SPAN lang=EN-US><FONT face=Calibri>php</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">文件</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># cd frontends/</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># cp -rf php /var/www/html/</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># cd /var/www/html</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># mv php zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><FONT size=3 face=Calibri># chown -R zabbix:zabbix zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 20.9pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.99" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564255><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>五、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT size=3 face=Calibri>web</FONT></SPAN></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564255"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">前端安装配置</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>php</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">相关参数</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri># vi /etc/php.ini<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN></FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">找到如下几项,改成下面的值</SPAN><SPAN lang=EN-US><FONT face=Calibri>,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">前面有</SPAN><SPAN lang=EN-US><FONT face=Calibri>;</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">号的要删掉</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>max_execution_time = 300</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>date.timezone = Asia/Shanghai</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>post_max_size = 32M</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>memory_limit = 128M</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>mbstring.func_overload = 2</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">重启</SPAN><SPAN lang=EN-US><FONT face=Calibri>apache</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#service httpd restart</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在本地浏览器上访问</SPAN><SPAN lang=EN-US><FONT face=Calibri>Zabbis Serve</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">地址开始</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">前端配置</SPAN><SPAN lang=EN-US><FONT face=Calibri>,http://ServerIP/zabbix</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">按提示一步步</SPAN><SPAN lang=EN-US><FONT face=Calibri>next</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,其中</SPAN><SPAN lang=EN-US><FONT face=Calibri>Step 3 </FONT></SPAN><SPAN style="FONT-FAMILY: ; COLOR: black" lang=EN-US 10.5pt mso-bidi-font-size: Verdana?,?sans-serif?;>Check of pre-requisites </SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: black; mso-ascii-font-family: verdana; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: verdana; mso-bidi-font-size: 10.5pt">必须全部项目</SPAN><SPAN style="FONT-FAMILY: ; COLOR: black" lang=EN-US 10.5pt mso-bidi-font-size: Verdana?,?sans-serif?;>OK</SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: black; mso-ascii-font-family: verdana; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: verdana; mso-bidi-font-size: 10.5pt">后才能继续配置,如有提示</SPAN><SPAN style="FONT-FAMILY: ; COLOR: black" lang=EN-US 10.5pt mso-bidi-font-size: Verdana?,?sans-serif?;>fail</SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: black; mso-ascii-font-family: verdana; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: verdana; mso-bidi-font-size: 10.5pt">,去</SPAN><SPAN style="FONT-FAMILY: ; COLOR: black" lang=EN-US 10.5pt mso-bidi-font-size: Verdana?,?sans-serif?;>server</SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: black; mso-ascii-font-family: verdana; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: verdana; mso-bidi-font-size: 10.5pt">上检查是否安装这个包或配置是否按上述更改。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; COLOR: black; mso-ascii-font-family: verdana; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: verdana; mso-bidi-font-size: 10.5pt"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; COLOR: black; mso-ascii-font-family: verdana; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: verdana; mso-bidi-font-size: 10.5pt"></SPAN><SPAN style="FONT-FAMILY: ; COLOR: black" lang=EN-US 10.5pt mso-bidi-font-size: Verdana?,?sans-serif?;><o:p><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266905188328.jpg"></o:p></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US><?xml:namespace prefix = v ns = "urn:schemas-microsoft-com:vml" /><v:shapetype id=_x0000_t75 stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600"><v:stroke joinstyle="miter"></v:stroke><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"></v:f><v:f eqn="sum @0 1 0"></v:f><v:f eqn="sum 0 0 @1"></v:f><v:f eqn="prod @2 1 2"></v:f><v:f eqn="prod @3 21600 pixelWidth"></v:f><v:f eqn="prod @3 21600 pixelHeight"></v:f><v:f eqn="sum @0 0 1"></v:f><v:f eqn="prod @6 1 2"></v:f><v:f eqn="prod @7 21600 pixelWidth"></v:f><v:f eqn="sum @8 21600 0"></v:f><v:f eqn="prod @7 21600 pixelHeight"></v:f><v:f eqn="sum @10 21600 0"></v:f></v:formulas><v:path o:connecttype="rect" gradientshapeok="t" o:extrusionok="f"></v:path><o:lock aspectratio="t" v:ext="edit"></o:lock></v:shapetype></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Step 4 </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">填入</SPAN><SPAN lang=EN-US><FONT face=Calibri>Zabbix Server </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">登陆</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysql</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的用户和密码</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Step 7 </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">按提示下载配置文件到</SPAN><SPAN lang=EN-US><FONT face=Calibri>Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>/var/www/html/zabbix/conf</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下,名字一定要是</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix.conf.php</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">配置完成后,出现登陆界面,默认的用户为</SPAN><SPAN lang=EN-US><FONT face=Calibri>:admin,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">密码为</SPAN><SPAN lang=EN-US><FONT face=Calibri>:zabbix</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564256><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>六、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">启动</SPAN><SPAN lang=EN-US><FONT face=Calibri>Server</FONT></SPAN></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">安装完成后的</SPAN><SPAN lang=EN-US><FONT face=Calibri>server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">程序在</SPAN><SPAN lang=EN-US><FONT face=Calibri>/usr/local/zabbix/sbin/</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">目录下,可以直接启动</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#/usr/local/zabbix/sbin/zabbix_server</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">为了便于启停</SPAN><SPAN lang=EN-US><FONT face=Calibri>Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,我们做一些小配置</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>复制控制程序</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># cp ./misc/init.d/redhat/zabbix_* /etc/init.d/</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">修改配置目录,将如下两个文件中的</SPAN><SPAN lang=EN-US><FONT face=Calibri>BASEDIR=</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">改为</SPAN><SPAN lang=EN-US><FONT face=Calibri>/usr/local/zabbix, </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下面两个配置中的</SPAN><SPAN lang=EN-US><FONT face=Calibri>bin</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">改为</SPAN><SPAN lang=EN-US><FONT face=Calibri>sbin</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,</SPAN><SPAN lang=EN-US><FONT face=Calibri>ZABBIX_AGENTD</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,</SPAN><SPAN lang=EN-US><FONT face=Calibri>ZABBIX_SUCKERD</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># vi /etc/init.d/zabbix_server_ctl</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># vi /etc/init.d/zabbix_agentd_ctl</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>加入开机启动</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># echo '/etc/init.d/zabbix_server_ctl start &amp;' &gt;&gt;/etc/rc</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># echo '/etc/init.d/zabbix_agentd_ctl start &amp;' &gt;&gt;/etc/rc</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>创建快键方式</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># ln -s /etc/init.d/zabbix_server_ctl /usr/bin/zabbix_server_ctl</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># ln -s /etc/init.d/zabbix_agentd_ctl /usr/bin/zabbix_agentd_ctl</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">启动</SPAN><SPAN lang=EN-US><FONT face=Calibri>Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">和</SPAN><SPAN lang=EN-US><FONT face=Calibri>Agentd(</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>start stop restart</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来操作</SPAN><SPAN lang=EN-US><FONT face=Calibri>)</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># zabbix_agentd_ctl start</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri># zabbix_server_ctl start</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">检查启动是否正常</SPAN><SPAN lang=EN-US><FONT face=Calibri>,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">查看进程是否起来</SPAN><SPAN lang=EN-US><FONT face=Calibri>,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">分</SPAN><SPAN lang=EN-US><FONT face=Calibri>server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">和</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#ps –ef|grep zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">如果进程没起来,可以查看对应的日志错误,默认在</SPAN><SPAN lang=EN-US><FONT face=Calibri>/tmp/zabbix-*.log</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">至此</SPAN><SPAN lang=EN-US><FONT face=Calibri>Zabbix Server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的安装已完成</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564257><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>七、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在</SPAN><SPAN lang=EN-US><FONT face=Calibri>hosts</FONT></SPAN></FONT></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564257"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上配置</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">需要在被监控的</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上安装</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,在</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">官网上下载相应平台的</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">包到各被监控端,按如下方式在被监控上运行</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">。(<SPAN style="COLOR: red">注:官网上下载的</SPAN></SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">包里没有运行</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所必须的配置文件,可以从</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>zabbix server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上拷贝一份</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>zabbix_agentd.conf</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,这个</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>conf</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">文件是所有平台都通用的</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.55pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT face=Calibri>Linux</FONT></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>UX</FONT></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:</SPAN><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Linux</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>UX</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上的</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是编译好了的,不用安装</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#cd /usr/local/zabbix</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#tar zxvf zabbix_agents_1.8.linux2_6.i386.tar.gz</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">取一份</SPAN><SPAN lang=EN-US><FONT face=Calibri>server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上的</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix_agnetd.conf</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">到本地,然后按说明修改,一般我们只需修改如下</SPAN><SPAN lang=EN-US><FONT face=Calibri>3</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">个参数:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Hostname=</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">本机名</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>Server=Zabbix Server IP</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>LogFile=</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">本机</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">日志保存文件</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">修改完成后,运行</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#/usr/local/zabbix/sbin/zabbix-agentd –c /usr/local/zabbix/zabbix_agentd.conf &amp;</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#ps –ef|grep zabbix_agentd</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">如果进程没起来,可查看</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd.log</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">日志来排查问题。(<SPAN style="COLOR: red">注:启动时建议用全路径,否则可能会出错</SPAN>)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>加入开机运行</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>#echo ‘/usr/local/zabbix/sbin/zabbix-agentd –c /usr/local/zabbix/zabbix_agentd.conf &amp;</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>‘ &gt;&gt;/etc/rc</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.55pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT size=3><FONT face=Calibri>Windows:<o:p></o:p></FONT></FONT></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Windows</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下解压客户端包到</SPAN><SPAN lang=EN-US><FONT face=Calibri>c:,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下载修改好的</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix_agentd.conf</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">文件也放到</SPAN><SPAN lang=EN-US><FONT face=Calibri>c:,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">打开</SPAN><SPAN lang=EN-US><FONT face=Calibri>cmd</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">命令行,执行</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>C:&gt;zabbix_agentd –install</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">安装后会在系统服务里添加一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix_agentd</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">服务,会自动开机运行</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>如果需要将客户端和配置文件放在其他目录,请执行</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>C:&gt;DIR/zabbix_agentd –c DIR/zabbix_agentd.conf –install </FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">启动</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">服务</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>C:&gt;zabbix_agentd –start</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">或是通过管理</SPAN><SPAN lang=EN-US><FONT face=Calibri>-&gt;</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">服务找到</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix_agentd</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来启动</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph>
<H2 style="MARGIN: 13pt 0cm"><A name=_Toc253564258><SPAN lang=EN-US><FONT face=Cambria><U>Part3.</U></FONT></SPAN></A><SPAN style="mso-bookmark: _toc253564258"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: cambria; mso-ascii-theme-font: major-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: major-fareast; mso-hansi-font-family: cambria; mso-hansi-theme-font: major-latin">配置使用</SPAN></SPAN></H2>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过本地浏览器访问</SPAN><SPAN lang=EN-US><A href="http://serverip/zabbix"><FONT face=Calibri>http://ServerIP/zabbix</FONT></A></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来开始配置和使用</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">。</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">使用</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">进行监控之前,要理解</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控的流程。</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>一次完整的监控流程可以简单描述为:</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt; mso-char-indent-count: 1.0" class=MsoNormal><FONT size=3><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>Host Groups</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(设备组)</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>-&gt;Hosts</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(设备)</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>-&gt;Applications</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(监控项组)</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>-&gt;Items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(监控项)</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>-&gt;Triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(触发器)</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>-&gt;Actions</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(告警动作)</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>-&gt;Medias</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(告警方式)</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>-&gt;User Groups</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(用户组)</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>-&gt;Users</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(用户)</SPAN><SPAN style="COLOR: red" lang=EN-US><o:p></o:p></SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564259><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>一、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>Hosts</SPAN></FONT></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是</SPAN><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控的基本载体,所有的监控项都是基于</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>Configuration-&gt;Hosts-&gt;Create Host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来创建监控设备</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266906832843.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US><v:shapetype id=_x0000_t75 stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600"><v:stroke joinstyle="miter"></v:stroke><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"></v:f><v:f eqn="sum @0 1 0"></v:f><v:f eqn="sum 0 0 @1"></v:f><v:f eqn="prod @2 1 2"></v:f><v:f eqn="prod @3 21600 pixelWidth"></v:f><v:f eqn="prod @3 21600 pixelHeight"></v:f><v:f eqn="sum @0 0 1"></v:f><v:f eqn="prod @6 1 2"></v:f><v:f eqn="prod @7 21600 pixelWidth"></v:f><v:f eqn="sum @8 21600 0"></v:f><v:f eqn="prod @7 21600 pixelHeight"></v:f><v:f eqn="sum @10 21600 0"></v:f></v:formulas><v:path o:connecttype="rect" gradientshapeok="t" o:extrusionok="f"></v:path><o:lock aspectratio="t" v:ext="edit"></o:lock></v:shapetype></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">按提示填入</SPAN><SPAN lang=EN-US><FONT face=Calibri>Name</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>Groups</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>IP ,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">其他选项默认即可,</SPAN><SPAN lang=EN-US><FONT face=Calibri>Link Templates </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">处选择一个模板,</SPAN><SPAN lang=EN-US><FONT face=Calibri>save</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">即可成功添加设备。(<SPAN style="COLOR: red">注:如果</SPAN></SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上没安装</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,添加后的状态会是</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>unmonitor</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,会采集不到值,</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">自带大量的设备监控模板,我们添加主机时通过</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>link</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">到这些模板,就可以快速添加主机的监控项和告警触发条件。</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">一类的</SPAN><SPAN lang=EN-US><FONT face=Calibri>hosts</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以归属到同一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>Host Group</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,便于分类管理同一类设备,在</SPAN><SPAN lang=EN-US><FONT face=Calibri>Configuration-&gt;Host Group-&gt;Create Host Group </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以添加设备组</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564260><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>二、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>Items</SPAN></FONT></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是监控项,是监控的基本元素,每一个监控项对应一个被监控端的采集值。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在</SPAN><SPAN lang=EN-US><FONT face=Calibri>Configuration-&gt;Hosts</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">界面,我们能看到每个</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所包含的</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">总数,点击对应主机的</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">项,可以看到具体的每个</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">信息,这些</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以引用自</SPAN><SPAN lang=EN-US><FONT face=Calibri>templates</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,也可以自己创建。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266906844234.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过点击具体</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">名字可以修改已有监控项的属性,点击</SPAN><SPAN lang=EN-US><FONT face=Calibri>Satus</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的链接可以禁用</SPAN><SPAN lang=EN-US><FONT face=Calibri>/</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">启用这个监控项。(<SPAN style="COLOR: red">注:我们可以通过新建一个</SPAN></SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,在</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中禁用掉所有不需要用到的</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,然后把同一类</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>hosts link to</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">这个</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,就不用一台台主机去更改</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">新增</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以通过点击右上角的</SPAN><SPAN lang=EN-US><FONT face=Calibri>create item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来创建</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266906855625.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><SPAN style="mso-spacerun: yes"><FONT face=Calibri>&nbsp; </FONT></SPAN></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">按提示逐项填入相关信息即可,其中</SPAN><SPAN lang=EN-US><FONT face=Calibri>key</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">已经自带的取值方法,</SPAN><SPAN lang=EN-US><FONT face=Calibri>Application</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">类似于</SPAN><SPAN lang=EN-US><FONT face=Calibri>host groups</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,是</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的组。(</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>item key</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">也可以自定义,后面会讲到如何自定义监控项</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">自带非常多的监控采集项及方法,基本能满足当前所有的监控功能,这些都包含在</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri> item key</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中了,更多的</SPAN><SPAN lang=EN-US><FONT face=Calibri>type</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">和</SPAN><SPAN lang=EN-US><FONT face=Calibri>key</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的解释请参考:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><A href="http://www.zabbix.com/documentation/1.8/manual/config/items"><FONT size=3 face=Calibri>http://www.zabbix.com/documentation/1.8/manual/config/items</FONT></A></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564261><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>三、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>Triggers</SPAN></FONT></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是触发器,当</SPAN><SPAN lang=EN-US><FONT face=Calibri>Items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">采集值满足</SPAN><SPAN lang=EN-US><FONT face=Calibri>triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的触发条件时,就会产生</SPAN><SPAN lang=EN-US><FONT face=Calibri>actions</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">。</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">每一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">必须对应一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,但一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以对应多个</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">。</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">同样,通过点击</SPAN><SPAN lang=EN-US><FONT face=Calibri>Configuration-&gt;Hosts-&gt;Triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中某个</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的名字,可以修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的属性。(<SPAN style="COLOR: red">注意:引用自</SPAN></SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">触发值是不能单独修改的,必须在</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中修改,或是复制一个同样的</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">再修改,然后禁用掉之前的</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">新增</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以通过点击右上角的</SPAN><SPAN lang=EN-US><FONT face=Calibri>create trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来创建</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266906866453.jpg"></SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Expression</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中选择对应的</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、触发方式及触发值,</SPAN><SPAN lang=EN-US><FONT face=Calibri>Severity</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是告警级别,根据</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的严重性来选择。</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">提供多种</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">触发方式供选择,常用的我们可以选择</SPAN><SPAN lang=EN-US><FONT face=Calibri>last value &lt;/&gt;/=/#/N(</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">最近一次采集值</SPAN><SPAN lang=EN-US><FONT face=Calibri>),</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">或是选择</SPAN><SPAN lang=EN-US><FONT face=Calibri>maximal value for period of time (</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">一段时间内的最大值</SPAN><SPAN lang=EN-US><FONT face=Calibri>),</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">等等。可以根据实际需要来设定触发方式。更多的解释请参考:</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><SPAN lang=EN-US><A href="http://www.zabbix.com/documentation/1.8/manual/config/triggers"><FONT size=3 face=Calibri>http://www.zabbix.com/documentation/1.8/manual/config/triggers</FONT></A></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564262><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>四、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>Actions</SPAN></FONT></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Action</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是告警动作,当触发器条件被满足时,就会执行指定的</SPAN><SPAN lang=EN-US><FONT face=Calibri>action</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>Configuration-&gt;Actions-&gt;Create Action</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来创建</SPAN><SPAN lang=EN-US><FONT face=Calibri>Action</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266906877656.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Event source:</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来源,如果选择</SPAN><SPAN lang=EN-US><FONT face=Calibri>triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,即所有的</SPAN><SPAN lang=EN-US><FONT face=Calibri>triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">条件满足时都会执行这个</SPAN><SPAN lang=EN-US><FONT face=Calibri>action</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Escalations</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:告警是否升级,及升级时间</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Subject</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>Message</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:告警标题和内容</SPAN><FONT face=Calibri> </FONT><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,此处可引用</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的宏变量;例如</SPAN><FONT face=Calibri> <SPAN lang=EN-US>{{HOSTNAME}:{TRIGGER.KEY}.last(0)}</SPAN></FONT><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">表示最后一次采集值,更多宏变量参考</SPAN><SPAN lang=EN-US><FONT face=Calibri>: </FONT><A href="http://www.zabbix.com/documentation/1.8/manual/config/macros"><FONT face=Calibri>http://www.zabbix.com/documentation/1.8/manual/config/macros</FONT></A></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Recovery Message</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:告警恢复信息,不勾选系统会用默认的,勾选后自定义</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Conditions</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">产生的条件,条件可以多选</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Operation</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:选择</SPAN><SPAN lang=EN-US><FONT face=Calibri>media </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">及</SPAN><SPAN lang=EN-US><FONT face=Calibri>user<SPAN style="mso-tab-count: 1">&nbsp;&nbsp; </SPAN></FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564263><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>五、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>Medias</SPAN></FONT></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Media</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,即告警方式,</SPAN><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以提供四类</SPAN><SPAN lang=EN-US><FONT face=Calibri>Media</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:</SPAN><SPAN lang=EN-US><FONT face=Calibri>Email/SMS/Jabber/Script</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>Administrator-&gt;Media Type</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来修改或新增告警方式</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Email</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">方式最常用的,填入相关的</SPAN><SPAN lang=EN-US><FONT face=Calibri>SMTP</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">信息,即可通过邮件方式发送告警。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266906887828.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>SMS</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">方式要在</SPAN><SPAN lang=EN-US><FONT face=Calibri>server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">主机上接入短信</SPAN><SPAN lang=EN-US><FONT face=Calibri>modem</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Jabber</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">方式是一种</SPAN><SPAN lang=EN-US><FONT face=Calibri>linux</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下的即时通讯工具</SPAN><SPAN lang=EN-US><FONT face=Calibri>,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>Jabber</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">发送即时消息。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Script</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">方式可以通过自己编写程序或脚本的方式发送告警信息。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564264><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>六、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri> Users</FONT></SPAN></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在</SPAN><SPAN lang=EN-US><FONT face=Calibri>Administrator-&gt;Users </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以添加用户和用户组</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>User Group</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以限制用户的权限,</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">自带的用户组的权限限制基本能满足我们的要求。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建用户时可以根据用户的不同作用划分到不同的组,</SPAN><SPAN lang=EN-US><FONT face=Calibri>media</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中填入告警接受地址及告警接受时间等信息。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266906944296.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564265><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>一、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>WEB Monitorings</SPAN></FONT></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Web Monitoring</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">是用来监控</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">程序的,可以监控到</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">程序的下载速度、返回码及响应时间,还支持把一组连续的</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">动作作为一个整体来监控。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下面我们以监控登陆</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">程序为例,来展示如何使用</SPAN><SPAN lang=EN-US><FONT face=Calibri>web monitoring</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Configuration-&gt;web-&gt;Create Scenario </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>Scenario(</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">注:必须选择</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">后才能创建</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的所有</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">都必须创建在</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>hosts</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上</SPAN><SPAN lang=EN-US><FONT face=Calibri>)</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266907634015.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US><v:shapetype id=_x0000_t75 stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600"><v:stroke joinstyle="miter"></v:stroke><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"></v:f><v:f eqn="sum @0 1 0"></v:f><v:f eqn="sum 0 0 @1"></v:f><v:f eqn="prod @2 1 2"></v:f><v:f eqn="prod @3 21600 pixelWidth"></v:f><v:f eqn="prod @3 21600 pixelHeight"></v:f><v:f eqn="sum @0 0 1"></v:f><v:f eqn="prod @6 1 2"></v:f><v:f eqn="prod @7 21600 pixelWidth"></v:f><v:f eqn="sum @8 21600 0"></v:f><v:f eqn="prod @7 21600 pixelHeight"></v:f><v:f eqn="sum @10 21600 0"></v:f></v:formulas><v:path o:connecttype="rect" gradientshapeok="t" o:extrusionok="f"></v:path><o:lock aspectratio="t" v:ext="edit"></o:lock></v:shapetype></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Application</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:选择这个</SPAN><SPAN lang=EN-US><FONT face=Calibri>scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所在的</SPAN><SPAN lang=EN-US><FONT face=Calibri>application</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">组</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Name</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:</SPAN><SPAN lang=EN-US><FONT face=Calibri>scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的名字</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Basic authentication</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:鉴权</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Update interval</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:监控频率,</SPAN><SPAN lang=EN-US><FONT face=Calibri>s</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">为单位</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:选择要使用的浏览器客户端,可能同样的</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">程序对不同的客户端展示的内容会不一样</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Status</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:默认为</SPAN><SPAN lang=EN-US><FONT face=Calibri>active</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Variables</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:变量定义,这里定义的变量可在后续的</SPAN><SPAN lang=EN-US><FONT face=Calibri>steps</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中使用,这里我们定义了用户和密码的变量</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Steps</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:</SPAN><SPAN lang=EN-US><FONT face=Calibri>web </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">程序的各个步骤,选择</SPAN><SPAN lang=EN-US><FONT face=Calibri>add</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">新增一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>Login</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>step</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,来模拟用户登陆,传递用户和密码给</SPAN><SPAN lang=EN-US><FONT face=Calibri>index.php</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">页面</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266907646625.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>URL</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:监控的</SPAN><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">页面</SPAN><SPAN lang=EN-US><FONT face=Calibri>(</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">注</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>:</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">必须是全路径带页面名</SPAN><SPAN lang=EN-US><FONT face=Calibri>)</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Post:</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">传递给页面的参数,多个参数之间用</SPAN><SPAN lang=EN-US><FONT face=Calibri>&amp;</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">连接,此处可引用前面定义的变量</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Timeout</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:超时时间</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Required</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:页面中能匹配到字符</SPAN><SPAN lang=EN-US><FONT face=Calibri>,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">匹配不到即认为错误</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Status codes:</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">页面返回码</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加完</SPAN><SPAN lang=EN-US><FONT face=Calibri>step</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">后,我们在</SPAN><SPAN lang=EN-US><FONT face=Calibri>Monitoring-&gt;web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">页面即能看到监控的状态和图示</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266907658703.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建完</SPAN><SPAN lang=EN-US><FONT face=Calibri>scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">后,</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">会自动创建相关的</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,所以我们只需为这些</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">即可让</SPAN><SPAN lang=EN-US><FONT face=Calibri>web scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">出错时产生告警</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Configuration-&gt;hosts-&gt;</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">点击</SPAN><SPAN lang=EN-US><FONT face=Calibri>scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所在的</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">条目的</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,直接</SPAN><SPAN lang=EN-US><FONT face=Calibri>create trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,在</SPAN><SPAN lang=EN-US><FONT face=Calibri>select items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的时候就可以看到系统自动创建的</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(<SPAN style="COLOR: red">注:自动创建的</SPAN></SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">列表中直接是看不到的,需要在创建</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">时选择</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">时才能看到</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266907671234.jpg">&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以在</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">列表中看到,系统为每个</SPAN><SPAN lang=EN-US><FONT face=Calibri>step</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建了</SPAN><SPAN lang=EN-US><FONT face=Calibri>3</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">个</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,</SPAN><SPAN lang=EN-US><FONT face=Calibri>Download Speed/Response Code/Response Time,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">为整个</SPAN><SPAN lang=EN-US><FONT face=Calibri>scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建了一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>test.fail</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,可以分别为其创建</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下例我们创建一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>Login</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">页面返回码的</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,大于等于</SPAN><SPAN lang=EN-US><FONT face=Calibri>400</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">即为错误</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266907700828.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">再创建一个整个</SPAN><SPAN lang=EN-US><FONT face=Calibri>scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所有</SPAN><SPAN lang=EN-US><FONT face=Calibri>step</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">运行是否成功的</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,采集值为</SPAN><SPAN lang=EN-US><FONT face=Calibri>0</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">表示整个</SPAN><SPAN lang=EN-US><FONT face=Calibri>scenario</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的所有</SPAN><SPAN lang=EN-US><FONT face=Calibri>step</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">都执行成功了,第几步的</SPAN><SPAN lang=EN-US><FONT face=Calibri>step</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">执行失败就返回数字几,且后续的</SPAN><SPAN lang=EN-US><FONT face=Calibri>step</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">都不会继续执行下去。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266907717328.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">这样,一个完整的</SPAN><SPAN lang=EN-US><FONT face=Calibri>web monitoring</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">就配置完成了。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Web monitoring</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">还有更多强大的功能,未能一一研究了解,有待挖掘</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564266><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>二、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri> Graphs</FONT></SPAN></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>Graphs</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">功能很强大,可以为每一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">绘制图表,也可以把多个</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">绘制在一张图表内。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>configuration-&gt;hosts</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">选择要绘制图表的</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,点击</SPAN><SPAN lang=EN-US><FONT face=Calibri>graphs</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,</SPAN><SPAN lang=EN-US><FONT face=Calibri>create graphs</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">即可创建图表。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266907728671.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Graph type</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">:图表样式,有线状、柱状、饼状</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">还可以自定义图表大小,及</SPAN><SPAN lang=EN-US><FONT face=Calibri>Y</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">轴最大最小值</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>add items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以添加在同一个图表中展示的多个</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(<SPAN style="COLOR: red">注:注意每个</SPAN></SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的颜色及取值范围,范围相差太大图表会显示不全</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">配置好的</SPAN><SPAN lang=EN-US><FONT face=Calibri>graphs</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在</SPAN><SPAN lang=EN-US><FONT face=Calibri>monitoring-&gt;graphs</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中查看</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>monitoring-&gt;last data</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下能快速查看每个</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的每个</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>graph<o:p></o:p></FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564267><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>三、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>Screens</SPAN></FONT></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Screen</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">将多种信息放在一起展示,便于集中展示某个</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的多个信息,或是比较多个</SPAN><SPAN lang=EN-US><FONT face=Calibri>hosts</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的同一种信息</SPAN><SPAN lang=EN-US><FONT face=Calibri>,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">这些信息可以为</SPAN><SPAN lang=EN-US><FONT face=Calibri>graphs</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>maps</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>server infos</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">等等,几乎涵盖</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所有的监控信息。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>configuration-&gt;screen-&gt;creat screen</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来创建,创建时定义</SPAN><SPAN lang=EN-US><FONT face=Calibri>screen</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的行数和列数,点击对应单元格内的</SPAN><SPAN lang=EN-US><FONT face=Calibri>change</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,添加相应的信息</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266907741484.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>monitoring-screen</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,可以查看之前配置好的信息。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564268><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>四、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri> Maps</FONT></SPAN></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564269><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>五、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman?>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri> MySQL</FONT></SPAN></FONT></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564269"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">自带有</SPAN><SPAN lang=EN-US><FONT face=Calibri>MySQL</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的监控模板,可以做一些简单的监控。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.55pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT face=Calibri>1</FONT></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、更改</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">配置</SPAN><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的配置文件上默认就有通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysqladmin</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">工具取</SPAN><SPAN lang=EN-US><FONT face=Calibri>MySQL</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">数据库监控信息的配置,我们只需更改需</SPAN><SPAN lang=EN-US><FONT face=Calibri>MySQL</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所在</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上的</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd.conf</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">文件,将文件最后的所有关于</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysql</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>UserParameter</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">前的</SPAN><SPAN lang=EN-US><FONT face=Calibri>#</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">号去掉,更改登陆</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysql</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的用户和密码即可。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>例如:修改后其中一条监控数据库状态如下:</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>UserParameter=mysql.ping,mysqladmin -uroot –proot ping|grep alive|wc –l</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">修改后重启</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上的</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,使配置文件生效。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.55pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT face=Calibri>2</FONT></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>items<o:p></o:p></FONT></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">端编辑</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysql</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所在的</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,使之</SPAN><SPAN lang=EN-US><FONT face=Calibri>link</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">到</SPAN><SPAN lang=EN-US><FONT face=Calibri>template_APP_MySQL</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">模板,然后在</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">里就能看到刚才定义的这些</SPAN><SPAN lang=EN-US><FONT face=Calibri>MySQL</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的监控项了,修改相应的</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">值即可。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">这个</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">自带的</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysql</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控功能比较弱,只是通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysqladmin</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">工具去查询</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysql</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的一些状态而已。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">我们可以自己编写或是找一些功能更强的</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysql</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控脚本,加到</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控里,后面会讲到如何自己添加监控。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">另外更详细的方法可参考</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix wiki</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上的</SPAN><SPAN lang=EN-US><FONT face=Calibri>mysql</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控方法,这个监控的就非常详细</SPAN><SPAN lang=EN-US><FONT face=Calibri>:</FONT><A href="http://www.zabbix.com/wiki/howto/monitor/db/mysql/extensive_mysql_monitoring_including_replication"><FONT face=Calibri>http://www.zabbix.com/wiki/howto/monitor/db/mysql/extensive_mysql_monitoring_including_replication</FONT></A></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564270><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>一、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>Oracle</SPAN></FONT></FONT></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564270"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Oracle</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控也参考</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix wiki</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上如下的方法(调用</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabora</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">工具):</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><A href="http://www.zabbix.com/wiki/howto/monitor/db/orcale/oracle"><FONT size=3 face=Calibri>http://www.zabbix.com/wiki/howto/monitor/db/orcale/oracle</FONT></A></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo2" class=MsoListParagraph><SPAN style="mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>1、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下载</SPAN><SPAN lang=EN-US><FONT face=Calibri>oracle</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控程序</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabora</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">到</SPAN><SPAN lang=EN-US><FONT face=Calibri>oracle</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">所在的主机上,修改所在</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd.conf</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,添加监控项,按如下格式:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>UserParameter=oracle.name,DIR/zabora pattern sid</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控</SPAN><SPAN lang=EN-US><FONT face=Calibri>oracle</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">数据库状态:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>UserParameter=oracle.checkactive,/usr/local/zabora checkactive OracleSID</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控</SPAN><SPAN lang=EN-US><FONT face=Calibri>oralce</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">数据库连接用户总数</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>UserParameter=oracle.usercount,/usr/local/zabora usercount OracleSID</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">更多</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabora</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的监控项参考如下:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri>zabora version: 1.5<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri>usage:<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora checkactive <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Check Intance is active and open.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora usercount <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Count of users connected to Oracle.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora activeusercount -- Count of active users.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora dbsize <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Size of user data (without temp).<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora dbfilesize <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Size of all datafiles.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora version <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Oracle version (Banner).<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora dsksortratio <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>-- Disk sorts ratio.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora rcachehit <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Read Cache hit ratio.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora uptime <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Instance Uptime (seconds).<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora commits <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- User Commits.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora rollbacks <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- User Rollbacks.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora deadlocks <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Deadlocks.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora redowrites <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Redo Writes.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora tblscans <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Table scans (long tables).<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora tblrowsscans <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>-- Table scan rows gotten.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora indexffs <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Index fast full scans (full).<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora hparsratio <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Hard parse ratio.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora netsent <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Bytes sent via SQL*Net to client.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora netresv <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Bytes received via SQL*Net from client.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora netroundtrips <SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>-- SQL*Net roundtrips to/from client.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora logonscurrent <SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>-- Logons current.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora lastarclog <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Last archived log sequence.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora lastapplarclog <SPAN style="mso-spacerun: yes">&nbsp; </SPAN>-- Last applied archive log (at standby).Next items requires .<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora freebufwaits <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>-- free buffer waits.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora bufbusywaits <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>-- buffer busy waits.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora logswcompletion -- log file switch completion.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora logfilesync <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- log file sync.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora logprllwrite <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp; </SPAN>-- log file parallel write.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora enqueue <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- enqueue waits.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora dbseqread <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- db file sequential read waits.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora dbscattread <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- db file scattered read.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora dbsnglwrite <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- db file single write.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora dbprllwrite <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- db file parallel write.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora directread <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- direct path read.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora directwrite <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- direct path write.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora latchfree <SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- latch free.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="COLOR: #4f81bd; FONT-SIZE: 9pt; mso-themecolor: accent1" lang=EN-US><FONT face=Calibri><SPAN style="mso-spacerun: yes">&nbsp;&nbsp; </SPAN>zabora zaboraver<SPAN style="mso-spacerun: yes">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN>-- Version of this script.<o:p></o:p></FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">保存配置,重启</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0; mso-list: l1 level1 lfo2" class=MsoListParagraph><SPAN style="mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>2、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix web</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">页面上创建对应的</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">和</SPAN><SPAN lang=EN-US><FONT face=Calibri>triggers</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建监控</SPAN><SPAN lang=EN-US><FONT face=Calibri>oracle</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">数据库状态的</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,</SPAN><SPAN lang=EN-US><FONT face=Calibri>item key</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">不要</SPAN><SPAN lang=EN-US><FONT face=Calibri>select</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,直接在</SPAN><SPAN lang=EN-US><FONT face=Calibri>key</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">栏输入在</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上的</SPAN><SPAN lang=EN-US><FONT face=Calibri>UserParameter name</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">例如监控数据库状态的:</SPAN><SPAN lang=EN-US><FONT face=Calibri>oracle.checkactive</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US><v:shapetype id=_x0000_t75 stroked="f" filled="f" path="m@4@5l@4@11@9@11@9@5xe" o:preferrelative="t" o:spt="75" coordsize="21600,21600"><v:stroke joinstyle="miter"></v:stroke><v:formulas><v:f eqn="if lineDrawn pixelLineWidth 0"></v:f><v:f eqn="sum @0 1 0"></v:f><v:f eqn="sum 0 0 @1"></v:f><v:f eqn="prod @2 1 2"></v:f><v:f eqn="prod @3 21600 pixelWidth"></v:f><v:f eqn="prod @3 21600 pixelHeight"></v:f><v:f eqn="sum @0 0 1"></v:f><v:f eqn="prod @6 1 2"></v:f><v:f eqn="prod @7 21600 pixelWidth"></v:f><v:f eqn="sum @8 21600 0"></v:f><v:f eqn="prod @7 21600 pixelHeight"></v:f><v:f eqn="sum @10 21600 0"></v:f></v:formulas><v:path o:connecttype="rect" gradientshapeok="t" o:extrusionok="f"></v:path><o:lock aspectratio="t" v:ext="edit"></o:lock></v:shapetype></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266908006437.jpg">&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,选择之前创建的</SPAN><SPAN lang=EN-US><FONT face=Calibri>item</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,最后一次采集值不为</SPAN><SPAN lang=EN-US><FONT face=Calibri>0</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,即为状态有问题。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">(<SPAN style="COLOR: red">注:不确定每个</SPAN></SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>zabora</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">方法的返回值时,可直接在</SPAN><SPAN style="COLOR: red" lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; COLOR: red; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上运行获取结果</SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">)</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266908021703.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 52.5pt; mso-char-indent-count: 0" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564271><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>二、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><FONT face=Calibri> <SPAN lang=EN-US>SNMP</SPAN></FONT></FONT></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564271"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564272><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>三、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>添加通用协议监控</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564273><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>四、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>添加自定义监控</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">对于</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">功能上无法实现的监控,我们可以通过自己编写程序或脚本来辅助完成,并将脚本的结果通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>agent</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">递交给</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">统一管理,一样可以绘制</SPAN><SPAN lang=EN-US><FONT face=Calibri>graph </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">报表等。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">具体的方法请参考上述</SPAN><SPAN lang=EN-US><FONT face=Calibri>oracle</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>UserParameters</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的定义方法,请参考:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><A href="http://www.zabbix.com/documentation/1.8/manual/config/user_parameters"><FONT size=3 face=Calibri>http://www.zabbix.com/documentation/1.8/manual/config/user_parameters</FONT></A></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564274><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>五、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri> Templates</FONT></SPAN></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">如果有大量的同一类设备,需要监控的信息也大致类似,一个个去修改相关参数比较麻烦,我们可以通过创建一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">来简化操作。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>Configuration-&gt;Host Groups-&gt;Template-&gt;Create Template</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266908036750.jpg"></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">创建</SPAN><SPAN lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">后,在</SPAN><SPAN lang=EN-US><FONT face=Calibri>configuration-&gt;host-&gt;template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下找到刚创建的</SPAN><SPAN lang=EN-US><FONT face=Calibri>MyLinuxTemplate,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">修改相关的</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>graphs</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">等信息,使满足要求后</SPAN><SPAN lang=EN-US><FONT face=Calibri>link</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">到相关的</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">即可。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564275><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>六、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>Log File</FONT></SPAN></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564276><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>七、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>定制报表</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 21.1pt; MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564277><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>八、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>Macros</FONT></SPAN></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Macros</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">指宏变量,定义的宏变量可以在</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">、</SPAN><SPAN lang=EN-US><FONT face=Calibri>actions</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">等多种场景中引用。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Macros</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">分系统自带全局宏的及自定义的宏。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">系统自带的全局</SPAN><SPAN lang=EN-US><FONT face=Calibri>macros</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">列表及解释参考:</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><A href="http://www.zabbix.com/documentation/1.8/manual/config/macros"><FONT size=3 face=Calibri>http://www.zabbix.com/documentation/1.8/manual/config/macros</FONT></A></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">引用</SPAN><SPAN lang=EN-US><FONT face=Calibri>macros</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的例子可参考上述</SPAN><SPAN lang=EN-US><FONT face=Calibri>action</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>{{Hostname}:{trigger.key}.last(0)}</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的例子。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">还支持自定义</SPAN><SPAN lang=EN-US><FONT face=Calibri>macros</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,在添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">或是</SPAN><SPAN lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">时,我们可以在</SPAN><SPAN lang=EN-US><FONT face=Calibri>macros</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">项中定义好后续要用到的宏变量,格式为</SPAN><SPAN lang=EN-US><FONT face=Calibri>:</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><FONT size=3 face=Calibri>{macroname}=macrovalue</FONT></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">自定义的宏变量及系统自带的宏变量都可以在</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">场景中引用,</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在遇到引用的宏变量时,会先查找当前场景中定义的宏,接着查找当前</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的自定义宏,接着查找</SPAN><SPAN lang=EN-US><FONT face=Calibri>link</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的宏,最后查找</SPAN><SPAN lang=EN-US><FONT face=Calibri>zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">系统自带的全局宏。所以在自定义宏时注意宏引用的顺序。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564278><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>九、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>添加自动发现设备</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 21.1pt; MARGIN: 0cm 0cm 0pt" class=MsoListParagraph><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564279><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>十、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>Inventory</FONT></SPAN></FONT></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Inventory </FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">用来管理设备存档信息的。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">在添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">时,勾选右侧的</SPAN><SPAN lang=EN-US><FONT face=Calibri>Use profile</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,我们即可填入该台设备的型号、编码、</SPAN><SPAN lang=EN-US><FONT face=Calibri>MAC</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">地址等详细信息,勾选</SPAN><SPAN lang=EN-US><FONT face=Calibri>Use extended profile</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">则可以填入更详细的信息。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">填写的</SPAN><SPAN lang=EN-US><FONT face=Calibri>inventory</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">信息在</SPAN><SPAN lang=EN-US><FONT face=Calibri>inventory-&gt;hosts</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">下能看到</SPAN><SPAN lang=EN-US><FONT face=Calibri>.</FONT></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266908049000.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -21pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564280><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-bidi-font-family: 宋体; mso-bidi-theme-font: minor-fareast" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>十一、</FONT><SPAN style="LINE-HEIGHT: normal; FONT-VARIANT: normal; FONT-STYLE: normal; FONT-SIZE: 7pt; FONT-WEIGHT: normal" Times New Roman??>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT size=3 face=Calibri>Export/Import XML</FONT></SPAN></B></U></A><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Zabbix</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">提供将所有配置导出为标准</SPAN><SPAN lang=EN-US><FONT face=Calibri>XML</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">格式的文件,同样,也支持导入标准格式的</SPAN><SPAN lang=EN-US><FONT face=Calibri>XML</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">配置文件。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">通过</SPAN><SPAN lang=EN-US><FONT face=Calibri>configuration-&gt;Export/Import-&gt;Export,</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">勾选要导出的</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,</SPAN><SPAN lang=EN-US><FONT face=Calibri>Preview</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可以展示要导出的</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的详细配置,选择</SPAN><SPAN lang=EN-US><FONT face=Calibri>export</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">即可导出</SPAN><SPAN lang=EN-US><FONT face=Calibri>xml</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">文件到本地。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><IMG onclick='window.open("http://blog.51cto.com/viewpic.php?refimg=" + this.src)' border=0 alt="" src="http://img1.51cto.com/attachment/201002/201002231266908083609.jpg"></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><SPAN style="mso-no-proof: yes" lang=EN-US></SPAN></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US><FONT face=Calibri>Import</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">可导入本地的</SPAN><SPAN lang=EN-US><FONT face=Calibri>XML</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">文件,注意格式一定要符合标准要求,如果</SPAN><SPAN lang=EN-US><FONT face=Calibri>server</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">上有同名的配置,会被覆盖掉。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">如果有大量的配置需要手动新增,譬如新增</SPAN><SPAN lang=EN-US><FONT face=Calibri>oralce</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">监控,我们可以手动编写</SPAN><SPAN lang=EN-US><FONT face=Calibri>xml</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,一次导入所有的</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">和</SPAN><SPAN lang=EN-US><FONT face=Calibri>triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,但要注意格式,可自己导出一个配置后参考。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">
<DIV style="MARGIN: 0cm 0cm 0pt; mso-outline-level: 2" class=MsoNormal><A name=_Toc253564281><B><SPAN style="FONT-FAMILY: ; FONT-SIZE: 16pt" lang=EN-US New Cambria?,?serif?; mso-ascii-theme-font: mso-fareast-font-family: 宋体; mso-fareast-theme-font: major-fareast; mso-hansi-theme-font: major-latin; mso-bidi-font-family: ?Times Roman?; mso-bidi-theme-font: major-bidi?><U>Part4.FAQ</U></SPAN></B></A><B><SPAN style="FONT-FAMILY: ; FONT-SIZE: 16pt" lang=EN-US New Cambria?,?serif?; mso-ascii-theme-font: mso-fareast-font-family: 宋体; mso-fareast-theme-font: major-fareast; mso-hansi-theme-font: major-latin; mso-bidi-font-family: ?Times Roman?; mso-bidi-theme-font: major-bidi?><o:p></o:p></SPAN></B></DIV>
<DIV style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 39pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564282><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>1、</FONT><SPAN Times New Roman??> </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT size=3 face=Calibri>Export/Import XML </FONT></SPAN></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564282"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">文件时报</SPAN><SPAN lang=EN-US><FONT face=Calibri> http 500</FONT></SPAN></B></SPAN><SPAN style="mso-bookmark: _toc253564282"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">错误</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt 39pt" class=MsoNormal><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">答:安装</SPAN><SPAN lang=EN-US><FONT face=Calibri>php-xml</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">包后,重启</SPAN><SPAN lang=EN-US><FONT face=Calibri>apache</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">即可</SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt 39pt" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 39pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564283><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>2、</FONT><SPAN Times New Roman??> </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><FONT size=3 face=Calibri>WEB</FONT></SPAN></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564283"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">前端安装</SPAN><SPAN lang=EN-US><FONT face=Calibri>Step 3 PHP MB Strings Overload </FONT></SPAN></B></SPAN><SPAN style="mso-bookmark: _toc253564283"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">检查</SPAN><SPAN lang=EN-US><FONT face=Calibri> fail</FONT></SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt 39pt" class=MsoNormal><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">答:修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>php.ini</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中的</SPAN><SPAN lang=EN-US><FONT face=Calibri>mbstring.func_overload = 2</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,重启</SPAN><SPAN lang=EN-US><FONT face=Calibri>apache</FONT></SPAN></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt" class=MsoNormal><SPAN lang=EN-US><o:p><FONT size=3 face=Calibri>&nbsp;</FONT></o:p></SPAN></DIV>
<DIV style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 39pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564284><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>3、</FONT><SPAN Times New Roman??> </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">无法修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN></FONT></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564284"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的阀值</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt 39pt" class=MsoNormal><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">答:添加</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">时如果</SPAN><SPAN lang=EN-US><FONT face=Calibri>link</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">了</SPAN><SPAN lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,那</SPAN><SPAN lang=EN-US><FONT face=Calibri>items</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">和</SPAN><SPAN lang=EN-US><FONT face=Calibri>triggers</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">都是引用自</SPAN><SPAN lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,而不是实际属于这个</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的,所以如果要修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">阀值,需要修改</SPAN><SPAN lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">中的阀值,修改后所有</SPAN><SPAN lang=EN-US><FONT face=Calibri>link</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">到这个</SPAN><SPAN lang=EN-US><FONT face=Calibri>template</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">都会改变。如果只想修改某台</SPAN><SPAN lang=EN-US><FONT face=Calibri>host</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">的</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,可以复制一个</SPAN><SPAN lang=EN-US><FONT face=Calibri>trigger</FONT></SPAN><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">,修改新复制过来的阀值,再禁用掉之前的即可。</SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: -18pt; MARGIN: 0cm 0cm 0pt 39pt; mso-char-indent-count: 0; mso-outline-level: 3; mso-list: l0 level1 lfo1" class=MsoListParagraph><A name=_Toc253564285><U><B style="mso-bidi-font-weight: normal"><SPAN style="mso-fareast-font-family: calibri; mso-fareast-theme-font: minor-latin; mso-bidi-font-family: calibri; mso-bidi-theme-font: minor-latin" lang=EN-US><SPAN style="mso-list: ignore"><FONT size=3 face=Calibri>4、</FONT><SPAN Times New Roman??> </SPAN></SPAN></SPAN></B><B style="mso-bidi-font-weight: normal"><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">运行</SPAN><SPAN lang=EN-US><FONT face=Calibri>agentd</FONT></SPAN></FONT></B></U></A><FONT size=3><SPAN style="mso-bookmark: _toc253564285"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">时进程总起不来,查看</SPAN><SPAN lang=EN-US><FONT face=Calibri>agetd.log</FONT></SPAN></B></SPAN><SPAN style="mso-bookmark: _toc253564285"><B style="mso-bidi-font-weight: normal"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin">又无报错</SPAN></B></SPAN><B style="mso-bidi-font-weight: normal"><SPAN lang=EN-US><o:p></o:p></SPAN></B></FONT></DIV>
<DIV style="MARGIN: 0cm 0cm 0pt 39pt" class=MsoNormal><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"><FONT size=3>答:全路径运行后正常</FONT></SPAN></DIV></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 10.5pt; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 1.0; mso-para-margin-left: 2.0gd" class=MsoListParagraph><FONT size=3><SPAN lang=EN-US></SPAN></FONT>&nbsp;</DIV></SPAN></FONT></DIV>
<DIV style="TEXT-INDENT: 0cm; MARGIN: 0cm 0cm 0pt 21pt; mso-char-indent-count: 0" class=MsoListParagraph><FONT size=3><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: calibri; mso-ascii-theme-font: minor-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: minor-fareast; mso-hansi-font-family: calibri; mso-hansi-theme-font: minor-latin"></SPAN></FONT>&nbsp;</DIV></SPAN></FONT><FONT size=3 face=Calibri><SPAN lang=EN-US></SPAN></FONT></DIV></DIV>
<DIV>&nbsp;</DIV>
<P>本文出自 “<A href="http://zjdick.blog.51cto.com/">迷茫</A>” 博客,<A href="http://zjdick.blog.51cto.com/1278092/277970">http://zjdick.blog.51cto.com/1278092/277970</A></P>
<P><SPAN style="mso-bookmark: _toc253564246"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: cambria; mso-ascii-theme-font: major-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: major-fareast; mso-hansi-font-family: cambria; mso-hansi-theme-font: major-latin"><FONT face=Helvetica></FONT></SPAN></SPAN>&nbsp;</P>
<P><SPAN style="mso-bookmark: _toc253564246"><SPAN style="FONT-FAMILY: 宋体; mso-ascii-font-family: cambria; mso-ascii-theme-font: major-latin; mso-fareast-font-family: 宋体; mso-fareast-theme-font: major-fareast; mso-hansi-font-family: cambria; mso-hansi-theme-font: major-latin"></SPAN></SPAN>&nbsp;</P>

dirtysea 发表于 2012-1-12 17:53:18

支持一下!!!:)
页: [1]
查看完整版本: 监控软件-Zabbix配置安装详解