tsmmonitor/README.md

79 lines
2.5 KiB
Markdown
Raw Permalink Normal View History

2013-01-26 18:20:45 +00:00
TSM Monitor 1
=============
2013-01-26 18:24:33 +00:00
About
-----
2013-01-26 18:20:45 +00:00
TSM monitor is a web application written in php to help TSM administrators to quickly get reports and health status information of their TSM (IBM Tivoli Storage Manager) servers. It generates its content dynamically so one can easily add or modify queries to adapt the application to ones own needs.
Features:
* customizable queries
* dynamically generated navigation menu
* overview page with traffic light logic
* graphical timetable charts for queries with start and end time (like backups and schedules)
* multiple servers
* login protection (authentication against default tsm server)
* result caching for better performance
* Sorting you can now sort query result tables by column dynamically, ascending and descending
* Searching queries like “show me all backups of node xyz” are now possible with dynamically modified queries through a search field
Screenshots
-----------
For Screenshots, look into /screenshots
Documentation
-------------
2013-01-26 18:24:33 +00:00
Requirements
2013-01-26 18:20:45 +00:00
* PHP5 or newer
* Apache 2.x or newer
* dsmadmc with all servers listed in your dsm.opt/sys. Since v0.6 you just need one SERVERNAME entry for every TSM server defined in your server.xml (Linux/Unix: dsm.sys, Windows: dsm.opt)
2013-01-26 18:24:33 +00:00
Installation
------------
2013-01-26 18:20:45 +00:00
* download the newest version of TSM monitor
* extract the package to your htdocs folder
* chown all files to your apache/www-User
* edit includes/server.xml
* make your dsmerror.log file writetable to the www user!
2013-01-26 18:24:33 +00:00
Configuration
-------------
2013-01-26 18:20:45 +00:00
There is only one file that needs to be edited: includes/server.xml
2013-01-26 18:24:33 +00:00
2013-01-26 18:20:45 +00:00
Enter here your server(s) like described below. The "defaultserver" is the server that will be displayed by default.
2013-01-26 18:26:47 +00:00
```xml
<config>
<serverarray>
<defaultserver>TSMSRV1</defaultserver>
<server>
<servername>TSMSRV1</servername>
<description>Subnet2</description>
<ip>172.xx.x.xxx</ip>
<port>1500</port>
</server>
<server>
<servername>TSMSRV2</servername>
<description>Subnet2</description>
<ip>172.xx.xxx.xx</ip>
<port>1500</port>
</server>
</serverarray>
2013-01-26 18:20:45 +00:00
</config>
2013-01-26 18:28:11 +00:00
```
2013-01-26 18:24:33 +00:00
Usage
----
2013-01-26 18:20:45 +00:00
Open your favourite browser (Firefox ;-)) and point it to http://yourserver/index.php
2013-01-26 18:24:33 +00:00