声明
作者:昨夜星辰
博客:http://yestreenstars.blog.51cto.com/
本文由本人创作,如需转载,请注明出处,谢谢合作!
软件环境介绍
OS:Windows Server 2008 R2 SP1 64bit
AppServ:傻瓜式安装Apache、MySQL、PHP集成环境
cacti:主程序
net-snmp:采集远程计算机数据
rrdtool:出图工具
安装集成环境
- 从AppServ官网下载安装包(我下载的版本是appserv-win32-8.1.0.exe);
- 安装(安装很简单,保持默认,一路下一步即可,除了有一步需要手动输入MySQL服务的root密码外)。
安装rrdtool
- 在C盘新建一个文件夹,命名为rrdtool;
- 从cacti官网下载安装包(我下载的版本是rrdtool-1.2.15-cygwin-1.5.20.zip);
- 解压到C:\rrdtool目录。
安装net-snmp
- 下载安装包;
- 安装(安装很简单,保持默认,一路下一步即可)。
安装cacti
- 清空C:\AppServ\www目录下的文件和文件夹;
- 从cacti官网下载安装包(我下载的版本是cacti-0.8.8.zip);
- 解压到C:\AppServ\www目录;
- 进入C:\AppServ\www目录;
- 将cacti-0.8.8重命名为cacti;
- 开始->所有程序->AppServ->MySQL Command Line Client;
- 输入密码;
- 执行以下SQL语句:
-
create database cacti;
-
grant all privileges on cacti.* to [email protected] identified by ‘cactiuser‘;
-
flush privileges;
时间: 2024-11-05 13:45:46