RackTables多功能网络监控管理工具


RackTables称自己为一个"机架空间、IP地址、服务器、交换机、路由器等的管理框架"。它拥有一个web界面,执行报告和配置,并管理名字服务。RackTables以PHP5、Apache、MySQL为基础。它可实现精确的网络连接管理,并拥有统一的搜索功能和一个多用户的访问模块。不过,其文档资料少得可怜,因此需要花点时间来搞清其运作机理。

支持的平台:Unix和Linux

更多安全工具>>进入专题

更多网管软件>>进入专题

下面来介绍一下ubuntu安装RackTables的过程。

ubuntu10.04server    用这个系统省得再yum LAMP环境)

RackTables-0.18.4.tar.gz

下载链接:http://down.51cto.com/data/167263

下载下来解压到/var/www上并改名rt(不喜欢太长的名字,测试要打得累)

创建数据库

mysql -u root -p
create database racktables;
grant all on racktables.* to root;
grant all on racktables.* to root@localhost;
grant all on racktables.* to rackuser;
grant all on racktables.* to rackuser@localhost;
set password for rackuser@localhost=password('rackpw');

开始安装http://192.168.216.138/rt/install.php,发现缺少扩展

apt-get install php5-gd
apt-get install php5-snmp
apt-get install php5-LDAP
/etc/init.d/apache2 restart
按proceed
touch /var/www/rt/inc/secret.php
chmod 666 /var/www/rt/inc/secret.php

输入建立的mysql数据库名帐号密码

如果需要PHPMYADMIN管理只需再apt-get install php5-mcrypt

相关内容