CentOS Linux下快速安装配置Cacti中文版过程简单记录。
安装Apache:
yum -y install httpd httpd-devel
安装Mysql:
yum -y install mysql mysql-server mysql-devel
/etc/init.d/mysqld start
设置Mysql密码
/usr/bin/mysqladmin -u root password 'newpassowrd'
安装PHP:
yum -y install php php-devel php-mysql php-common php-gd php-mbstring php-mcrypt php-xml php-snmp
/etc/init.d/httpd start
设置开机启动
chkconfig httpd on
chkconfig mysqld on
安装Cacti
1.首先安装相关软件,由于官方源无rrdtool,可先安装EPEL源。
yum -y install net-snmp net-snmp-libs net-snmp-utils net-snmp-devel rrdtool
2.下载Cacti中文版,解压缩移至网站目录。
wget
tar zxvf 090815172648.gz
mv cacti-0.8.7e-cn-utf8/ /var/www/cacti
chmod -R 777 /var/www/cacti
cd /var/www/cacti
3.新建Cacti数据库和数据库用户,为安全以一般用户运行。
mysql -u root -p
create database cacti default character set utf8;
grant all privileges on cacti.* to cacti@localhost identified by 'password' ;
#新建数据库用户cacti并授予cacti数据库权限
flush privileges;
#刷新权限表
exit