欢迎来到天天文库
浏览记录
ID:6124992
大小:1.77 MB
页数:16页
时间:2018-01-03
《cacti安装与配置》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、Cacti安装与配置一、准备所需要的软件包Apache http://www.apache.org/Mysql http://www.mysql.com/Php http://www.php.netRrdtool http://oss.oetiker.ch/rrdtool/Net-snmp http://www.net-snmp.org/Cacti http://www.cacti.net/其中apache、mysql、php通过yum安装二、安装所需要的软件1.安装LAMP[root@cacti~]#yum-yinstallhttpdmysql
2、-serverphpphp-mysqlmysql-devel[root@cacti~]#chkconfighttpdon[root@cacti~]#chkconfigmysqldon[root@cacti~]#/etc/init.d/httpdstart[root@cacti~]#/etc/init.d/mysqldstart安装完成后,可通过以下程序测试[root@cactihtml]#catinex.php2.安装rrdtoolRrdtool安装需要cairo、libxml2、pango库支持,可通过yum安装[root@ca
3、cti~]#yum-yinstallcairo-devellibxml2-develpango-devel[root@cacti~]#tarzxvfrrdtool-1.4.7.tar.gz[root@cacti~]#cdrrdtool-1.4.7[root@cactirrdtool-1.4.7]#./configure--prefix=/usr/local/rrdtool[root@cactirrdtool-1.4.7]#make&&makeinstall[root@cactirrdtool-1.4.7]#ln-s/usr/local/rrdtool/bin/*/
4、usr/local/bin/ 3.安装net-snmp[root@cacti~]#tarzxvfnet-snmp-5.6.1.1.tar.gz[root@cacti~]#cdnet-snmp-5.6.1.1[root@cactinet-snmp-5.6.1.1]#./configure--prefix=/usr/local/net-snmp[root@cactinet-snmp-5.6.1.1]#make&&makeinstall[root@cactinet-snmp-5.6.1.1]#cpEXAMPLE.conf/etc/snmpd.conf[root@cact
5、i~]#ln-s/usr/local/net-snmp/bin/*/usr/local/bin/[root@cacti~]#vim/etc/snmpd.confrocommunitypubliclocalhost#去掉注释[root@cacti~]#/usr/local/net-snmp/sbin/snmpd -c/etc/snmpd.conf加入开机启动[root@cacti~]#echo"/usr/local/net-snmp/sbin/snmpd-c/etc/snmpd.conf">>/etc/rc.local 4.安装cacti[root@cacti~]#
6、tarzxvfcacti-0.8.7i-PIA-3.1.tar.gz[root@cacti~]#mvcacti-0.8.7i-PIA-3.1/*/var/www/html/#将cacti中的内容移到web目录[root@cacti~]#chown-Rapache:apache/var/www/html/[root@cacti~]#mysql-uroot #连接到mysql创建数据库mysql>createdatabasecacti;#创建cacti数据库mysql>insertintomysql.user(host,user,password)values('lo
7、calhost','cacti',password('cacti123'));#建立用户cacti,密码cacti123mysql>flushprivileges;#重载mysql授权表mysql>grantalloncacti.*tocacti@'localhost'identifiedby'cacti123';#把数据库cacti授权于用户cacti[root@cacti~]#cd/var/www/html/[root@cactihtml]#mysql-ucacti-pcacti123cacti8、正确连接数
8、正确连接数
此文档下载收益归作者所有