LINUX Cacti 安装SOP FOR CentOS6.5

本文涉及的产品
云数据库 RDS MySQL,集群系列 2核4GB
推荐场景:
搭建个人博客
RDS MySQL Serverless 基础系列,0.5-2RCU 50GB
云数据库 RDS MySQL,高可用系列 2核4GB
简介:

CACTI for LINUX安裝SOP

前言:

Cacti是一套基于PHP,MySQL,SNMPRRDTool开发的网络流量监测图形分析工具。它通过snmpget来获取数据,使用RRDtool绘画图形,其功能相當完善,界面友好。Cacti最初是基于Linux的,但如果你對LINUX了解不多,比如像我一樣,那么你最好不要使用Cacti for Linux,自然CactiEZ例外,因為即使你在Linux上能夠按安裝步驟安裝,安裝中出現的任何問題,哪怕它再小,也會讓你備受折磨,所以使用CactiEZ吧,或者Cacti for Windows也行。另外以下安裝方法,只保證在Redhat Desktop 9可行,在后面會提及原因。

準備工作:

    Linux平台:CentOS6.5

    PHP+MySQL+SNMPCentOS6.5帶安裝包

    Cacti:cacti-0.8.7e.tar.gz

    Rrdtoolrrdtool-1.3.8-10.el6.i686

rrdtool-perl-1.3.8-10.el6.i686

Sambavsftp:便于安裝過程中上傳文件,我使用的是samba

直接yum –y install lftp

    Yum:很多軟件使用yum安裝,事先配置好yum源會方便很多

步驟:

  • 安裝系統

為你的監控電腦安裝Linux操作系統,在安裝過程中有詢問需要安裝那些軟件包,個人建議全選,因為PHP+MySQL+SNMP除了幾個安裝包外,還有十幾個Installing  package for dependencies,漏選一個都麻煩,而且,你會在意硬盤多耗兩G空間?!所以,全選吧。如果你安装的不是Redhat Desktop 9,比如Linux4.0Linux 5.0,那么你需要在安装的过程中将SELinux(Security-EnhancedLinux)选为disable,虽然SELinux能够在一定程度上保证系统的安全,但它对于进程只赋予最小的权限,会导致在安装后RRDtool调运拒绝,而无法正常运行出图。

 

  • 架設PHP+MySQL+SNMP平臺

  • 搭建LAMP环境环境

如果你按我上面说的,在安装Linux的过程中勾选了全部软件包,那么你现在会轻松很多,如果你没有的话,那么你得找回Linux安装盘,并使用yum -y install httpd mysql php mysql-serverphp-mysql net-snmp将其一一安装,LAMP环境就搭建好了。

     2.启动服务

     [root@cacti html]# /etc/init.d/httpd start

[root@cacti html]# /etc/init.d/mysqld start

[root@cacti html]# /etc/init.d/snmpd start

     3.设置服务开机自启动

[root@cacti ~]# chkconfig httpd on

[root@cacti ~]# chkconfig mysqld on

[root@cacti ~]# chkconfig snmpd on

当然你也可以直接使用setup命令,在system services里面直接勾选。       

4.测试phpMysql

在/var/www/html/内创建一个如下php.php文件测试php

[root@cacti html]#vi php.php #插入内容如下

<?php
phpinfo(); 
?>

浏览器测试http://服务器IP/php.php,如果能看到PHP信息则PHP环境搭建好了。

 测试Mysql:打mysql命令能看到mysql>提示符就行了。

 

  • 安装RRDtool

如果你使用的是.rpm安装包,那么按以下方式安装

[root@cacti ~]# yum install libart_lgpl.i386libart_lgpl-devel.i386

[root@cacti ~]#

 rpm -ivh rrdtool-1.3.8-10.el6.i686rrdtool-perl-1.3.8-10.el6.i686

如果使用的是.tar.gz或者.tar.tar安装包,使用以下方式安装

[root@cacti ~]# tar -zxvf rrdtool-1.2.25.tar.tar

[root@cacti ~]# cd rrdtool-1.2.25

[root@cacti ~]# ./configure-prefix=/usr/local/rrdtool

[root@cacti ~]# make

[root@cacti ~]# make install

 

  • 配置mysql cacti数据库

创建一个执行监控用的用户cactiuser

[root@ cacti ~]# useradd –p 你的密码-s /sbin/bash cactiuser

-p指定密码 –s指定登录shell

然后进入mysql配置cacti数据库

mysql>create database cactidb; #创建database
Query OK, 1 row affected (0.00 sec)

mysql>grant all on cactidb.* to root; #授权root用户所有权限
Query OK, 0 rows affected (0.01 sec)

mysql>grant all on cactidb.* to root@localhost;  
Query OK, 0 rows affected (0.01 sec)

mysql>grant all on cactidb.* to cactiuser; #授权cactiuser
Query OK, 0 rows affected (0.00 sec)

mysql>grant all on cactidb.* to cactiuser@localhost
Query OK, 0 rows affected (0.01 sec)

mysql>set password for cactiuser@localhost=password(’你的密码’);
Query OK, 0 rows affected (0.00 sec)

mysql>exit

  • 安装配置Cacti

[root@cacti tasks]# tar -xzvf cacti-0.8.7b

 #解压cacti-0.8.7b 

[root@cacti tasks]# mv cacti-0.8.7b/var/www/html/cacti

#移动cacti文件夹到/var/www/html 目录并改名cacti

[root@cacti cacti]# cd /var/www/html/cacti/

#进入cacti目录;

[root@cacti cacti]# mysql -u root -pcactidb<cacti.sql                 

#执行cacti.sql语句并导入到cactidb数据库中;

编辑配置文件,具体根据实际情况: 
[root@cacti cacti]#vi /var/www/cacti/include/config.php

$database_type = “mysql”; 
$database_default = “cactidb”; 
$database_hostname = “localhost”; 
$database_username = “cactiuser”; 
$database_password = “
你的密码”;

 

cactiuser用户加入数据更新,5分钟取一次。

 

[root@cacti cacti]#crontab –u cactiuser –e

插入以下内容并保存
*/5 * * * * php -f /var/www/html/cacti/poller.php>/dev/null 2>&1

注意用户权限,如果是root用户就直接crontab –e 

进入cacti页面进行初始化安装。

http://服务器IP/cacti   如果无法访问提示没有权限,请查看cacti文件夹是否赋予apache用户和组权限,因为默认访问cacti服务器的用户为apache

d81e359cc6ff331a0e38543504d524c7.jpg

64b6d5913d1c35ee420db1c2931db6cb.jpg

63ee832364a96666e81fe109348d9d2c.jpg

RRDTool根据你安装的方式不同,RRDTool Binary Path可能需要更改,不然可能会出现RRDTOOL无法找到的现象。

初始用户名admin 密码admin

初次要更改密码:

d0b81cf51cc6756d298a05a6b6a57454.jpg

进入初始页面,没有添加模板之前cacti页面只有console graphs两个选项。

  • 安装插件

但在安装插件时,必须先安装cacti的一个patch--Plugin Architecture

安装cacti-plugin-arch

下载地址:http://www.cacti.net/downloads/pia/cacti-plugin-0.8.7g-PA-v2.8.tar.gz

[root@cacti tasks]#tar -zxvf cacti-plugin-arch.tar.gz

[root@cacti tasks]#cp -a cacti-plugin-arch /var/www/html/cacti/

[root@cacti tasks]#cd /var/www/html/cacti/

[root@cacti cacti]#cp cacti-plugin-0.8.7b-PA-v2.1.diff /var/www/html/cacti/

[root@cacti cacti]#patch -p1 -N <cacti-plugin-0.8.7b-PA-v2.1.diff

编辑include/global.php 文件:

[root@cacti cacti]#vi include/global.php

 $plugins = array();  下面加上:
$plugins[] = ‘thold’;  
$plugins[] = ‘monitor’; //
如果安装monitor的话

保存即可。

注意:有些插件默认不显示在页面上,需要在user managerment里将ViewThresholdsView minitore选择上。

9907ab0b052cdcbd90cd48f75b302953.jpg

具体安装过程如下:

#wget http://cactiusers.org/downloads/cacti-plugin-arch.gzip 
tar -zvxf cacti-plugin-arch.tar.gz 
cd cacti-plugin-arch 
cp cacti-plugin-0.8.7b-PA-v2.1.diff /var/www/html/cacti 
cd /var/www/html/cacti 
sudo patch -p1 -N < cacti-plugin-0.8.7b-PA-v2.1.diff

#wget http://cactiusers.org/downloads/thold.tar.gz 
tar -zvxf thold-0.3.9.tar.gz 
chown -R root:root thold 
mv thold /var/www/html/cacti/plugins/

#wget http://cactiusers.org/downloads/monitor.tar.gz 
tar -zvxf monitor-0.8.2.tar.gz 
chown -R root:root monitor 
mv monitor /var/www/html/cacti/plugins/

#wget http://cactiusers.org/downloads/settings.tar.gz 
tar -zvxf settings-0.5.tar.gz 
chown -R root:root settings 
mv settings /var/www/html/cacti/plugins/

#wget http://cactiusers.org/downloads/update.tar.gz 
tar -zvxf update-0.4.tar.gz 
chown -R root:root update 
mv update /var/www/html/cacti/plugins/

 

vi /var/www/html/cacti/include/config.php

/* Default session name – Session name must containalpha characters */ 
#$cacti_session_name = "Cacti"; 
#
在此处增加下面内容 
$plugins = array(); 
$plugins[] = ‘thold’; 
$plugins[] = ‘monitor’; 
$plugins[] = ‘settings’; 
$plugins[] = ‘update’; 
?>

亦可在include/global.php 文件中添加,作用是一样的。

 










本文转自wang650108151CTO博客,原文链接: http://blog.51cto.com/woyaoxuelinux/1984025,如需转载请自行联系原作者


相关实践学习
如何快速连接云数据库RDS MySQL
本场景介绍如何通过阿里云数据管理服务DMS快速连接云数据库RDS MySQL,然后进行数据表的CRUD操作。
全面了解阿里云能为你做什么
阿里云在全球各地部署高效节能的绿色数据中心,利用清洁计算为万物互联的新世界提供源源不断的能源动力,目前开服的区域包括中国(华北、华东、华南、香港)、新加坡、美国(美东、美西)、欧洲、中东、澳大利亚、日本。目前阿里云的产品涵盖弹性计算、数据库、存储与CDN、分析与搜索、云通信、网络、管理与监控、应用服务、互联网中间件、移动服务、视频服务等。通过本课程,来了解阿里云能够为你的业务带来哪些帮助 &nbsp; &nbsp; 相关的阿里云产品:云服务器ECS 云服务器 ECS(Elastic Compute Service)是一种弹性可伸缩的计算服务,助您降低 IT 成本,提升运维效率,使您更专注于核心业务创新。产品详情: https://www.aliyun.com/product/ecs
相关文章
|
14天前
|
Linux Python
Linux 安装python3.7.6
本教程介绍在Linux系统上安装Python 3.7.6的步骤。首先使用`yum`安装依赖环境,包括zlib、openssl等开发库。接着通过`wget`下载Python 3.7.6源码包并解压。创建目标文件夹`/usr/local/python3`后,进入解压目录执行配置、编译和安装命令。最后设置软链接,使`python3`和`pip3`命令生效。
|
16天前
|
Ubuntu Linux
Linux 各发行版安装 ping 命令指南
如何在不同 Linux 发行版(Ubuntu/Debian、CentOS/RHEL/Fedora、Arch Linux、openSUSE、Alpine Linux)上安装 `ping` 命令,详细列出各发行版的安装步骤和验证方法,帮助系统管理员和网络工程师快速排查网络问题。
101 20
|
14天前
|
负载均衡 Ubuntu 应用服务中间件
nginx修改网站默认根目录及发布(linux、centos、ubuntu)openEuler软件源repo站点
通过合理配置 Nginx,我们可以高效地管理和发布软件源,为用户提供稳定可靠的服务。
74 13
|
10天前
|
NoSQL 关系型数据库 MySQL
Linux安装jdk、mysql、redis
Linux安装jdk、mysql、redis
101 7
|
16天前
|
Unix Linux 编译器
UNIX/Linux 上的安装
UNIX/Linux 上的安装。
35 2
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第16天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括配置系统源、安装 SQL Server 2019 软件包以及数据库初始化,确保 SQL Server 正常运行。
|
2月前
|
NoSQL Linux PHP
如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤
本文介绍了如何在不同操作系统上安装 Redis 服务器,包括 Linux 和 Windows 的具体步骤。接着,对比了两种常用的 PHP Redis 客户端扩展:PhpRedis 和 Predis,详细说明了它们的安装方法及优缺点。最后,提供了使用 PhpRedis 和 Predis 在 PHP 中连接 Redis 服务器及进行字符串、列表、集合和哈希等数据类型的基本操作示例。
73 4
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第8天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统准备、配置安装源、安装 SQL Server 软件包、运行安装程序、初始化数据库以及配置远程连接。通过这些步骤,您可以顺利地在 CentOS 系统上部署和使用 SQL Server 2019。
|
2月前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第7天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统要求检查与准备、配置安装源、安装 SQL Server 2019、配置 SQL Server 以及数据库初始化(可选)。通过这些步骤,你可以成功安装并初步配置 SQL Server 2019,进行简单的数据库操作。
|
2月前
|
存储 安全 Linux
VMware安装CentOS7
【11月更文挑战第11天】本文详细介绍了在 VMware 中安装 CentOS 7 的步骤,包括准备工作、创建虚拟机、配置虚拟机硬件和安装 CentOS 7。具体步骤涵盖下载 CentOS 7 镜像文件、安装 VMware 软件、创建和配置虚拟机硬件、启动虚拟机并进行安装设置,最终完成 CentOS 7 的安装。在安装过程中,需注意合理设置磁盘分区、软件选择和网络配置,以确保系统的性能和功能满足需求。
253 0