<?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; 运维监控</title>
	<atom:link href="http://www.osyunwei.com/archives/category/monitor/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>Sun, 10 May 2026 14:53:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Linux下安装部署Prometheus+Alertmanager+Grafana监控平台</title>
		<link>https://www.osyunwei.com/archives/15788.html</link>
		<comments>https://www.osyunwei.com/archives/15788.html#comments</comments>
		<pubDate>Mon, 09 Jun 2025 07:10:15 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Prometheus]]></category>
		<category><![CDATA[Alertmanager]]></category>
		<category><![CDATA[Grafana]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=15788</guid>
		<description><![CDATA[组件介绍： 1、Prometheus是由go语言开发的一套开源的系统监控报警框架。 2、Alertmanager是接收Prometheus发送的告警信息，它支持丰富的告警通知渠道，而且很容易做到告警信息进行去重，降噪，分组，策略路由，是一款专业的告警通知系统。 3、Grafana是一个开源的图表可视化工具，图表配置方便，生成的图表很漂亮，并能实现告警，支持五十多种数据源，Prometheus就是其中支持的一种。 4、可以理解为Prometheus是收集数据，Alertmanager是数据告警系统，Grafana是把Prometheus收集来的数据整理并通过图表的方式展示出来。 5、Prometheus也有自己的图表展示模块，但相比Grafana比较简陋，所以一般使用Grafana作为Web UI展示数据。 6、Grafana也有告警功能，但是比较简单，所以一般使用Alertmanager专业告警系统。 操作系统：AnolisOS-8.x 服务端IP：10.189.189.171 客户端IP：10.189.189.189、10.189.189.188、10.189.189.187 准备篇： 1、关闭selinux setenforce 0 #临时关闭 sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config #永久关闭 /usr/sbin/sestatus -v #shutdown -r now 重启服务器后查看selinux状态，disabled表示关闭 2、设置防火墙，放行相关端口 #内网集群环境下，如果有硬件防火墙，也可以直接关闭系统防火墙。 Prometheus服务端：tcp 9090 Prometheus客户端：tcp 9100 Alertmanager：tcp 9093 Grafana：tcp 3000 #AnolisOS-8.x默认是firewall防火墙，可以改为iptables防火墙 2.1关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl stop firewalld yum remove [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/15788.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/15788.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux下搭建Prometheus+Alertmanager+Grafana监控平台</title>
		<link>https://www.osyunwei.com/archives/12269.html</link>
		<comments>https://www.osyunwei.com/archives/12269.html#comments</comments>
		<pubDate>Wed, 25 May 2022 02:29:49 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Prometheus]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Grafana]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">https://www.osyunwei.com/?p=12269</guid>
		<description><![CDATA[组件介绍： 1、Prometheus是由go语言开发的一套开源的系统监控报警框架。 2、Alertmanager是接收Prometheus发送的告警信息，它支持丰富的告警通知渠道，而且很容易做到告警信息进行去重，降噪，分组，策略路由，是一款专业的告警通知系统。 3、Grafana是一个开源的图表可视化工具，图表配置方便，生成的图表很漂亮，并能实现告警，支持五十多种数据源，Prometheus就是其中支持的一种。 4、可以理解为Prometheus是收集数据，Alertmanager是数据告警系统，Grafana是把Prometheus收集来的数据整理并通过图表的方式展示出来。 5、Prometheus也有自己的图表展示模块，但相比Grafana比较简陋，所以一般使用Grafana作为Web UI展示数据。 6、Grafana也有告警功能，但是比较简单，所以一般使用Alertmanager专业告警系统。 操作系统：CentOS 7.x 8.x 服务端IP：192.168.21.182 客户端IP：192.168.21.179 准备工作： 一、所有服务器关闭selinux setenforce 0 #临时关闭 sed -i 's/^SELINUX=.*/SELINUX=disabled/' /etc/selinux/config #永久关闭 /usr/sbin/sestatus -v #shutdown -r now 重启服务器后查看selinux状态，disabled表示关闭 二、设置防火墙，放行相关端口 #内网集群环境下，如果有硬件防火墙，也可以直接关闭系统防火墙。 Prometheus服务端：tcp 9090 Prometheus客户端：tcp 9100 Alertmanager：tcp 9093 Grafana：tcp 3000 CentOS 7.x 8.x默认是firewall防火墙，可以改为iptables防火墙 1、关闭firewall： systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 systemctl mask firewalld systemctl [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/12269.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/12269.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<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>
		<item>
		<title>Windows Server 2008 R2安装SNMP服务</title>
		<link>https://www.osyunwei.com/archives/3402.html</link>
		<comments>https://www.osyunwei.com/archives/3402.html#comments</comments>
		<pubDate>Sat, 31 Mar 2012 18:45:15 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[SNMP]]></category>
		<category><![CDATA[Windows Server 2008]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=3402</guid>
		<description><![CDATA[说明： 在Windows Server 2003中SNMP服务是以Windows组件的形式来安装的，具体是通过：开始-设置-控制面板-添加或删除程序-添加删除Windows组件-管理和监视工具-简单网络管理协议（SNMP）来安装的。 在Windows Server 2008以及Windows Server 2008 R2中，SNMP是以一个服务器功能的形式存在的，安装方法也与Windows Server 2003完全不一样了，下面教大家在Windows Server 2008 R2中安装SNMP服务： 一、安装SNMP 打开开始-管理工具-服务器管理 服务器管理器-功能-添加功能 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 选择SNMP服务，下一步 点安装 正在安装 安装完成后，点关闭 重新启动服务器，使SNMP服务生效，否则不能正确配置SNMP （注意：如果不想重启服务器，重新启动一下SNMP服务也可以） 重启SNMP服务方法:服务器管理器-配置-服务-SNMP Service鼠标右键-选择“重新启动”即可。 &#160; 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 &#160; 双击打开NMP Service，切换到安全选项，接受的社区名称-添加 团体权限：只读 社区名称：public 接受来自下列主机的SNMP数据包 编辑，SNMP 服务配置，主机名，IP或IPX 地址(H): 填写Cacti等监控主机的的IP地址:192.168.1.100 当然你也可以选择“接受来自任何主机的SNMP数据包”,为了安全，建议配置为监控主机的IP地址 最后，应用-确定，重启SNMP服务，使配置生效 二、设置防火墙，开启UDP161端口 远程监控主机是通过服务器UDP161端口来获取监控数据的，所以要设置防火墙对外开放UDP161端口 下面设置开启服务器的UDP161端口 打开防火墙：开始-控制面板-系统和安全-查看防火墙状态 打开或关闭Windows防火墙 家庭或工作（专用）网络位置设置：启用Windows防火墙 公用网络位置设置：启用Windows防火墙 最后确定 打开高级设置 点入站规则，再打开右上角的新建规则 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/3402.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/3402.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Cacti监控服务器配置教程(基于CentOS+Nginx+MySQL+PHP环境搭建)</title>
		<link>https://www.osyunwei.com/archives/3209.html</link>
		<comments>https://www.osyunwei.com/archives/3209.html#comments</comments>
		<pubDate>Wed, 21 Mar 2012 12:06:52 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[Cacti监控]]></category>
		<category><![CDATA[CentOS]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=3209</guid>
		<description><![CDATA[具体案例： 局域网内有两台主机，一台Linux、一台Windows，现在需要配置一台Cacti监控服务器对这两台主机进行监控 环境说明： 1、Linux主机 操作系统：CentOS 6.2 IP地址：192.168.21.164 子网掩码：255.255.255.0 网关：192.168.21.2 DNS：8.8.8.8 8.8.4.4 2、Windows主机 操作系统：Windows Server 2003 IP地址：192.168.21.130 子网掩码：255.255.255.0 网关：192.168.21.2 DNS：8.8.8.8 8.8.4.4 3、需要配置的Cacti监控服务器 操作系统：CentOS 6.2 IP地址：192.168.21.169 子网掩码：255.255.255.0 网关：192.168.21.2 DNS：8.8.8.8 8.8.4.4 教程开始： 一、安装配置Cacti监控服务器 1、安装系统：请参考 CentOS 6.2安装(超级详细图解教程)：http://www.osyunwei.com/archives/1537.html 2、设置IP地址、网关、DNS：请参考 CentOS 6.0 设置IP地址、网关、DNS：http://www.osyunwei.com/archives/423.html 备注：CentOS 6.2的IP地址、网关、DNS设置与CentOS 6.0完全相同 3、配置防火墙，开始80端口、3306端口、161端口 vi /etc/sysconfig/iptables -A INPUT -m state --state NEW -m tcp -p tcp --dport 80 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/3209.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/3209.html/feed</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>CactiEZ 中文版V10.1安装使用以及139邮箱短信报警设置</title>
		<link>https://www.osyunwei.com/archives/3067.html</link>
		<comments>https://www.osyunwei.com/archives/3067.html#comments</comments>
		<pubDate>Wed, 14 Mar 2012 01:20:44 +0000</pubDate>
		<dc:creator>qihang01</dc:creator>
				<category><![CDATA[Cacti]]></category>
		<category><![CDATA[CactiEZ]]></category>

		<guid isPermaLink="false">http://www.osyunwei.com/?p=3067</guid>
		<description><![CDATA[说明：CactiEZ中文版V10.1是基于CentOS 6.0系统，整合Cacti等相关软件，重新编译而成的一个操作系统！ 优点：省去了复杂烦琐的Cacti配置过程，安装之后即可使用，全部中文化，界面更友好 缺点：CactiEZ是一个完整的操作系统，需要专门一台电脑才能安装使用 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 具体案例： 1、CactiEZ监控主机 IP：192.168.21.175 子网掩码：255.255.255.0 网关：192.168.21.2 DNS：8.8.8.8 8.8.4.4 2、Windows客户机 系统：Windows Server 2003 IP：192.168.21.130，与CactiEZ监控主机在同一个局域网内 3、Linux客户机 系统：CentOS 6.2 IP：192.168.21.169，与CactiEZ监控主机在同一个局域网内 目的：使用CactiEZ监控主机对Windows客户机和Linux客户机进行监控 一、安装CactiEZ监控主机 CactiEZ下载地址（下载方法：复制下载地址到迅雷等下载工具里面进行下载）： 32位: http://www.zhengfeng.net/CactiEZ-10.1-i386.torrent 64位: http://www.zhengfeng.net/CactiEZ-10.1-x86_64.torrent 下面以安装32为CactiEZ系统为例，64位系统安装方法相同 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 特别说明：安装CactiEZ的主机磁盘空间必须要在10G以上，否则不能安装 如果是虚拟机安装，请设置磁盘空间大于10G 把下载好的CactiEZ系统镜像刻录为光盘，使用光盘成功引导系统之后，会出现下面的界面 选择第一项，安装CactiEZ，回车，出现如下界面 检查安装介质，这里选择Skip直接跳过，回车，系统会自动安装 系统运维 www.osyunwei.com 温馨提醒：qihang01原创内容版权所有,转载请注明出处及原文链接 系统已经安装完成，点击Reboot重启系统！ 二、设置CactiEZ监控主机 默认安装好之后，系统登录用户root，密码CactiEZ 以下操作在登录系统之后进行 1、修改root登录密码 passwd root #回车之后，提示输入2次新密码 出现：passwd：all authentication tokens updated successfully.说明密码修改成功 2、修改IP地址、子网掩码、网关、DNS等信息 [...]<p><a rel="bookmark" href="https://www.osyunwei.com/archives/3067.html" target="_blank">查看全文</a></p>]]></description>
		<wfw:commentRss>https://www.osyunwei.com/archives/3067.html/feed</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
	</channel>
</rss>
