<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>系统运维 &#187; Zabbix</title>
	<atom:link href="http://www.osyunwei.com/archives/tag/zabbix/feed" rel="self" type="application/rss+xml" />
	<link>https://www.osyunwei.com</link>
	<description>国产化OS/AnolisOS/openEuler/RHEL/CentOS/Rocky Linux/Debian/Ubuntu Linux FreeBSD 服务器教程 &#124; Windows Server 2003/2008/2012/2016/2019/2022/2025服务器教程</description>
	<lastBuildDate>Wed, 01 Apr 2026 08:27:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Zabbix3.x安装图解教程</title>
		<link>https://www.osyunwei.com/archives/9401.html</link>
		<comments>https://www.osyunwei.com/archives/9401.html#comments</comments>
		<pubDate>Wed, 30 Mar 2016 07:42:57 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Zabbix]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=9401</guid>
		<description><![CDATA[准备知识： Zabbix3.x比较之前的2.0界面有了很大的变化，但是安装部署过程与2.x基本完全一样。 1、Zabbix2.x安装图解教程 http://www.osyunwei.com/archives/7984.html 2、CentOS 7.0编译安装Nginx1.6.0+MySQL5.6.19+PHP5.5.14 http://www.osyunwei.com/archives/7891.html 3、zabbix软件包下载 zabbix-3.0.1.tar.gz http://heanet.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/3.0.1/zabbix-3.0.1.tar.gz 上传zabbix-3.0.1.tar.gz到服务器/usr/local/src目录下面 安装部署： 请参考Zabbix2.x安装图解教程 一、创建、导入zabbix数据库 cd /usr/local/src #进入软件包下载目录 tar zabbix-3.0.1.tar.gz #解压 cd /usr/local/src/zabbix-3.0.1/database/mysql #进入mysql数据库创建脚本目录 ls #列出文件，可以看到有schema.sql、images.sql、data.sql这三个文件 mysql -u root -p #输入密码，进入MySQL控制台 create database zabbix character set utf8; #创建数据库zabbix，并且数据库编码使用utf8 insert into mysql.user(Host,User,Password) values('localhost','zabbix',password('123456')); #新建账户zabbix，密码123456 flush privileges; #刷新系统授权表 grant all on zabbix.* to 'zabbix'@'localhost' identified by '123456' with grant option; #允许账户zabbix能从本机连接到数据库zabbix flush privileges; #再次刷新系统授权表 use zabbix #进入数据库 source /usr/local/src/zabbix-3.0.1/database/mysql/schema.sql #导入脚本文件到zabbix数据库 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/9401.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/9401.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zabbix邮件报警设置</title>
		<link>https://www.osyunwei.com/archives/8113.html</link>
		<comments>https://www.osyunwei.com/archives/8113.html#comments</comments>
		<pubDate>Fri, 17 Oct 2014 09:01:02 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Zabbix]]></category>
		<category><![CDATA[Zabbix报警]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=8113</guid>
		<description><![CDATA[说明： Zabbix监控服务端、客户端都已经部署完成，被监控主机已经添加，Zabiix监控运行正常。 实现目的： 在Zabbix服务端设置邮件报警，当被监控主机宕机或者达到触发器预设值时，会自动发送报警邮件到指定邮箱。 具体操作： 以下操作在Zabbix监控服务端进行 备注：Zabbix监控服务端 操作系统：CentOS 主机名：zabbix.osyunwei.com 邮件报警有两种情况： 1、Zabbix服务端只是单纯的发送报警邮件到指定邮箱，发送报警邮件的这个邮箱账号是Zabbix服务端的本地邮箱账号（例如：root@localhost.localdomain），只能发送，不能接收外部邮件。 2、使用一个可以在互联网上正常收发邮件的邮箱账号（例如：xxx@163.com），通过在Zabbix服务端中设置，使其能够发送报警邮件到指定邮箱。 第一种：使用Zabbix服务端本地邮箱账号发送邮件 一、安装sendmail或者postfix yum install sendmail #安装 service sendmail start #启动 chkconfig sendmail on #设置开机启动 yum install postfix service postfix start chkconfig postfix on CentOS 5.x 默认已经安装好sendmail CentOS 6.x 默认已经安装好postfix sendmail和postfix只需要安装一个即可并开启服务即可。 二、安装邮件发送工具mailx yum install mailx #安装 CentOS 5.x 编译安装mailx，直接yum安装的mailx版本太旧，使用外部邮件发送会有问题。 yum remove mailx #卸载系统自带的旧版mailx 下载mailx： [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/8113.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/8113.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zabbix监控交换机设置</title>
		<link>https://www.osyunwei.com/archives/8063.html</link>
		<comments>https://www.osyunwei.com/archives/8063.html#comments</comments>
		<pubDate>Tue, 14 Oct 2014 07:58:32 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Zabbix]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[交换机]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=8063</guid>
		<description><![CDATA[说明： Zabbix监控服务端已经配置完成，现在要使用Zabbix对交换机进行监控。 具体操作： 以下操作在被监控的交换机上进行，这里以Cisco交换机为例。 一、登录到Cisco交换机，开启snmp服务 注意：使用telnet或者仿真终端登录到交换机特权配置模式 enable #切换到特权模式 configure terminal #进入全局配置模式 snmp-server community public ro #打开交换机snmp服务，设置团体名称为public，只读 snmp-server community cisco rw #打开交换机snmp服务，设置团体名称为cisco，读写 snmp-server enable traps #启用snmp陷阱 exit #退出全局配置模式 show run #查看当前配置信息 exit #退出特权模式 二、使用Getif查看交换机端口信息 下载Getif：http://www.wtcs.org/snmp4tpc/FILES/Tools/SNMP/getif/getif-2.3.1.zip 安装完成之后，打开软件 注意：Windows 7/8/8.1系统需要单击右键，选择以管理员身份运行，否则软件打开失败！ Host name：交换机ip地址 Read：public 其他默认 点Start 连接成功后如下图所示： 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容©版权所有,转载请注明出处及原文链 切换到interface选项卡，点Start连接后查看交换机所有的端口信息，并记录下来，如下图所示： 切换到MBrowser选项卡 选择iso-&#62;org-&#62;dod-&#62;internet-&#62;mgmt-&#62;mib-2-&#62;interface-&#62;ifTable-&#62;ifEntry-&#62;ifInOctets 点Start 连接成功后如下图所示： 注意： ifInOctets #交换机端口进流量 ifOutOctets [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/8063.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/8063.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zabbix监控Linux主机设置</title>
		<link>https://www.osyunwei.com/archives/8035.html</link>
		<comments>https://www.osyunwei.com/archives/8035.html#comments</comments>
		<pubDate>Fri, 10 Oct 2014 05:35:49 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Zabbix]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=8035</guid>
		<description><![CDATA[说明： Zabbix监控服务端已经配置完成，现在要使用Zabbix对Linux主机进行监控。 具体操作： 以下操作在被监控的Linux主机进行，这里以CentOS 6.x系统为例。 一、配置防火墙，开启10050、10051的TCP和UDP端口 vi /etc/sysconfig/iptables #编辑防火墙配置文件 -A INPUT -s 192.168.21.127 -m state --state NEW -m tcp -p tcp --dport 10050:10051 -j ACCEPT -A INPUT -s 192.168.21.127 -m state --state NEW -m udp -p udp --dport 10050:10051 -j ACCEPT :wq! #保存退出 service iptables restart #重启防火墙使配置生效 说明：192.168.21.127是Zabbix服务端的IP地址，表示端口只对此IP开放，如果要对所有IP开放，规则如下： -A INPUT -m state --state NEW -m [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/8035.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/8035.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zabbix安装图解教程</title>
		<link>https://www.osyunwei.com/archives/7984.html</link>
		<comments>https://www.osyunwei.com/archives/7984.html#comments</comments>
		<pubDate>Tue, 30 Sep 2014 01:07:20 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Zabbix]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=7984</guid>
		<description><![CDATA[说明： 操作系统：CentOS IP地址：192.168.21.127 Web环境：Nginx+MySQL+PHP zabbix版本：Zabbix 2.2 LTS 备注：Linux下安装zabbix需要有LAMP或者LNMP运行环境 准备篇： 一、Web环境：Nginx+MySQL+PHP CentOS 7.0编译安装Nginx1.6.0+MySQL5.6.19+PHP5.5.14 http://www.osyunwei.com/archives/7891.html 二、zabbix软件包下载 zabbix-2.2.6 http://jaist.dl.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/2.2.6/zabbix-2.2.6.tar.gz 上传zabbix-2.2.6.tar.gz到服务器/usr/local/src目录下面 安装篇 一、创建、导入zabbix数据库 cd /usr/local/src #进入软件包下载目录 tar zxvf zabbix-2.2.6.tar.gz #解压 cd /usr/local/src/zabbix-2.2.6/database/mysql #进入mysql数据库创建脚本目录 ls #列出文件，可以看到有schema.sql、images.sql、data.sql这三个文件 mysql -u root -p #输入密码，进入MySQL控制台 create database zabbix character set utf8; #创建数据库zabbix，并且数据库编码使用utf8 insert into mysql.user(Host,User,Password) values('localhost','zabbix',password('123456')); #新建账户zabbix，密码123456 flush privileges; #刷新系统授权表 grant all on zabbix.* [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/7984.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/7984.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
