equal
deleted
inserted
replaced
|
1 Radius Viewer Application |
|
2 ------------------------- |
|
3 Tomas Zeman <tzeman@volny.cz> |
|
4 Released: 2011 |
|
5 |
|
6 RadViewer provides web-based view/search of BTS, Syslog and Radius |
|
7 accounting databases. |
|
8 |
|
9 Configuration and deployment: |
|
10 |
|
11 The application is packaged as a standard webarchive to be deployed in |
|
12 any servlet container. It is configured via |
|
13 /WEB-INF/classes/default.props file (in Java properties format) and |
|
14 expects 3 database connections to be configured: |
|
15 |
|
16 - syslog (syslog entries) |
|
17 - radius accounts (subscriber info) |
|
18 - radius accounting packets (CDRs) |
|
19 |
|
20 Building from source: |
|
21 |
|
22 The application can be build via simple build tool |
|
23 (http://code.google.com/p/simple-build-tool/). Just do: |
|
24 |
|
25 $ sbt update |
|
26 $ sbt clean |
|
27 $ sbt package |
|
28 |
|
29 # vim: tw=72 et ts=2 sw=2 |