网站联盟营销,莱州相亲网站,含山县查询建设工程的网站,wordpress关闭网站吗CentOS 6.0架设流量监控及集中日志系统第一章、cacti的安装1、 系统的基本设置2、 设置主机名3、 [rootlocalhost ~]# vi /etc/sysconfig/network4、 [rootlocalhost ~]# exit5、 重新登陆6、 [rootGZ-Cacti ~]#7、 安装screen后台运行程序yum -y install screen8、 安装优秀的… CentOS 6.0架设流量监控及集中日志系统第一章、cacti的安装1、 系统的基本设置2、 设置主机名3、 [rootlocalhost ~]# vi /etc/sysconfig/network4、 [rootlocalhost ~]# exit5、 重新登陆6、 [rootGZ-Cacti ~]#7、 安装screen后台运行程序yum -y install screen8、 安装优秀的编辑器vimyum -y install vim9、 执行screen -S cacti进程进行安装程序防止断开远程导致安装中断 10、 cacti所需组件httpMysqlmysql-serverPhpPhp-mysqlPhp-snmpphp-cliphp-commonPerl-DBD-MySQLPhp-pdorrdtoolNet-snmpNet-snmp-libsNet-snmp-utilsrrdtoolyum安装这些组件yum -y install httpd php php-mysql php-snmp php-cli php-common mysql mysql-server net-snmp net-snmp-libs net-snmp-utils php-pdo perl-DBD-MySQL rrdtool#下载cacti[rootGZ-cacti ~]# cd /home/[rootGZ-cacti home]# wget http://www.cacti.net/downloads/cacti-0.8.7g.tar.gz#解压cacti[rootGZ-cacti home]# tar xvf cacti-0.8.7g.tar.gz#进入cacti文件夹将里面的文件移动到/var/www/html/[rootGZ-cacti home]# cd cacti-0.8.7g[rootGZ-cacti cacti-0.8.7g]#[rootGZ-cacti cacti-0.8.7g]# mv * /var/www/html/#启动apache及mysql服务[rootGZ-cacti cacti-0.8.7g]# /etc/init.d/httpd restartStopping httpd: [ OK ]Starting httpd: httpd: Could not reliably determine the servers fully qualified domain name, using 61.140.3.66 for ServerName[ OK ][rootGZ-cacti cacti-0.8.7g]# /etc/init.d/mysqld restartStopping mysqld: [ OK ]Starting mysqld: [ OK ][rootGZ-cacti cacti-0.8.7g]##并将apache、mysql及network加入自启动# chkconfig --level 35 httpd on# chkconfig --level 35 mysqld on#chkconfig network on建立数据库mysql create database cacti;mysql grant all privileges on cacti.* to cactiuserlocalhost identified by cacti with grant option;mysqlflush privileges;导入cacti数据库[rootGZ-cacti cacti-0.8.7g]# mysql -h localhost -u cactiuser -p cacti /var/www/html/cacti.sqlEnter password:[rootGZ-cacti cacti-0.8.7g]#修改cacti配置文件$database_type mysql;$database_default cacti;$database_hostname localhost;$database_username cactiuser;$database_password cacti;$database_port 3306;#$cacti_session_name Cacti;暂时关闭防火墙/etc/init.d/iptables stop检查SELinux现时况态 要知到你现在是否使用 SELinux: # getenforceenforcing关闭selinux修改档案/etc/sysconfig/selinux # This file controls the state of SELinux on the system.# SELINUX can take one of these three values:# enforcing - SELinux security policy is enforced.# permissive - SELinux prints warnings instead of enforcing.# disabled - SELinux is fully disabled.SELINUXenforcing # SELINUXTYPE type of policy in use. Possible values are:# targeted - Only targeted.NETwork daemons are protected.# strict - Full SELinux protection.SELINUXTYPEtargeted 把 SELINUX设定为disable, 下次启动系统后将会停止SElinux。# getenforcedisable 进入安装界面http://cacti-ip/install/index.php确保每个路径都正确点击下一步完成安装 安装较高版本的cacti在打开这里的时候可能会提示ERROR: Your Cacti database login account does not have access to the MySQL TimeZone database. Please provide the Cacti database account select access to the time_zone_name table in the mysql database, and populate MySQLs TimeZone information before proceeding. 解决方法首先在bash环境下执行mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root -p 密码 mysql 然后登陆mysql环境下mysql use mysql;mysql GRANT SELECT ON mysql.time_zone_name TO cactiuserlocalhost;mysql flush privileges;** 配置snmpvi /etc/snmp/snmp.conf7配置snmpvi /etc/snmp/snmp.conf#将下边这行中的defaultcom2secnotConfigUser default public#改为127.0.0.1com2secnotConfigUser 127.0.0.1 Cacti#将下边这行中的systemviewaccess notConfigGroup any noauth exact systemview none none#改为allaccess notConfigGroup any noauth exact all none none#将下边这行的注释“#”号去掉#view all included .1 80#重启snmpd服务service snmpd restart用这个命令进行测试能抓取信息为配置正确snmpwalk -v 1 localhost -c Cacti安装ntpdate并且停用自动更新yum -y install ntpdate/etc/init.d/ntpdate stopchkconfig ntpdate off以cacituser用户增加入一个计划任务使得 cacti 每五分钟生成一个监控图表。crontab -e#加入如下内容。注意poller.php的路径*/5 * * * * php /var/www/html/poller.php /dev/null 21时间同步命令每十分钟跟因特网同步时钟*/10 * * * * ntpdate 210.72.145.44 /dev/null 21并将rra和log文件夹赋予cactiuser以读写权限poller.php文件赋予cactiuser用户运行权限[cactiuserlocalhost html]$ chmod 777 rra[cactiuserlocalhost html]$ chmod 777 log[cactiuserlocalhost html]$ chmod 755 poller.php至此cacti安装完成稍等五分钟刷新一下就可以出图 本文出自 “明日灵感” 博客请务必保留此出处http://coolner.blog.51cto.com/957576/688164 转载于:https://www.cnblogs.com/fjping0606/p/4428958.html