| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README | 2007-03-13 | 3.3 kB | |
| Totals: 1 Item | 3.3 kB | 0 | |
/*
* This file is part of FlapMap Project.
* Author: Yunqi LI (Jimmy) <liyunqi@gmail.com>
* Copyright (c) 2006£¬NM Group, Tsinghua University * All rights reserved.
* See /doc/COPYRIGHT for copyright/licensing information.
*/
1.A brief introduction of Flapmap
FlapMap a light-weighted web-based topology visualization Tool.
We hope to make it a more user-friendly and flexible visualization tool than previous works.
It is developed at NM Group in network research center of Tsinghua Univ, P.R China
The Key Features Include:
a. Using Flash to show the topo map and try to make it more user friendly than Java Applet and ActiveX.
b. Seperate the presentation layer and logic layer,the date is retrieve by database.
So it can be integrated with differnet underlying network management systems as long as it
provide the basic data flap map requires.
c. Flexible configuration, the system can automatically present layer style or circly style layour,
or the users can drag and stick the network element to different position as they want.
Also, you can change almost anything, (the backgroud pic, the network icon) to satisfy your special needs.
d. Not just a map, we try to make it a single user interface of the whole network management system,
for instance, the color of the link can be changed and link and icon can be clicked to link to other URL
to show your other parts of the web-based NMS.(Which is not provided because this is independent of Flapmap)
To see more infomation, pls refer to the pdf doc on /doc directory.
(Some of them are in chinese).
2.Installation prerequisite
2.1 A web server support PHP script, typically an Apache server
FlapMap is build using PHP 4.3.2
2.2 A Database server, typically MySQL Server
FlapMap is build under MySQl 3.23.52
2.Installation guide£º
2.1.Config web server
take apache server for instance£¨other webserver pls follow the same procedure£©
a.edit httpd.conf file if the default is an apache server, the default is under /etc/httpd/conf directory
alias [directory show in the Web server] [real directory on host]
Notice£ºyou can specify different port or add authentifiction module for your security needs.
b.restart httpd server
2.2Install Database file£¬using the umpty and sample database sql file
(in /etc directory of flapmap)
mysql -p [DatabaseName]< DBInfo_With_Sample.ini //contains sample data
or
mysql -p [DatabaseName] < DBInfo_Empty_Data.ini //contains only the base db structure and some basic sys info data.
Notice£ºthe default DB name of Flapmap is FlapDB,you can change it as you wish.
using create database [DatabaseName] and
use [DatabaseName] command
2.3 in the root directory of FlapMap, run
1. chmod u+x install, give install file auth
2. ./install allocation the auth level to each directory
2.4 Change basic configurations in /admin/Flapmap.conf.ini
according to the help info
Done!
3.Uninstallation
3.1 remove the Flapmap Directory
3.2 remove the Flapmap Database
3.3 remove the configuration line in httpd.conf.