Flux»Projects


RackMonkey 1.2.5 Admin Guide

RackMonkey 1.2.5 Documentation Index

RackMonkey Version 1.2.5
©2004-2009 Will Green (wgreen at users.sourceforge.net)
Licensed under the GNU Public Licence v2.

Contents

  1. Configuration Options
  2. Restricting Access and Recording Who Made Changes
  3. Change Log

1. Configuration Options

The RackMonkey configuration file (by default stored in /etc/rackmonkey.conf on the server) allows you to adjust the behaviour of RackMonkey. At present these values can't be set on a per-user basis, they apply to all users.

1.1. Rack Numbering Direction

RackMonkey allows you to number racks from the top (highest position in the rack) or bottom. By default racks are numbered from the bottom. If your racks are normally numbered from the top, change the value of number_from_top to 1 in the config file:

number_from_top = 1

1.2. Size of 1U in Physical Rack View

The physical rack view uses HTML tables to draw a rack. By default a 1U table cell occupies 14px. If you want to make this larger or smaller you can change the value of size_of_u to you preferred size in pixels. As the table contains graphics (for example the plus buttons used to add new devices) there is a limit to how thin 1U will actually appear. To make 1U 20 pixels high set the following:

size_of_u = 20

This can also be used to solve issues where racks shown side-by-side don't line up properly: this occurs because the graphics used in the interface may make rows larger than this minimum. If your racks don't line up, try increasing this value by 1px and reloading the page. Repeat until your racks line up.

2.1. Password Protecting RackMonkey

You can control access to RackMonkey using standard Apache auth (often configured in an .htaccess file). If you set up accounts this way RackMonkey will use the username in the change log so you can see who changed what and when (if you don't use accounts the IP is recorded instead). I recommend you create a separate account for each RackMonkey user, that way you'll know who updated what and when. For information on setting up authentication using Apache see: Apache Docs.

2.2. Read Only Access

To allow a user read only access to RackMonkey create an account called 'guest' (with any password you choose). A guest account has full read access but cannot edit anything.

3. Change Log

Every time a record is edited in RackMonkey the details of the change are recorded. The time and user of the last change is visible at the bottom of an entry, something like 'Entry last updated by bob at 2007-02-15 13:22:56 GMT'. If you haven't set up accounts (see above), then the IP address of the user is shown instead.

To see the full change log for RackMonkey you need to use the logdump command line tool. Locate the perl directory from your RackMonkey install (contains the rackmonkey.pl script) and cd into it (the logdump script needs to be run from the perl directory), you can then run the logdump command to see all the changes. For example:

  $ cd /home/rackmonkey/perl
$ bin/logdump
Table Action                Name     ID    Changed (GMT)     Changed By
===============================================================================
app insert                    Foo      1 2008-07-02 20:07             ::1
device update                 mon      5 2008-07-07 11:10             ::1
device update                 db2      4 2008-07-07 11:10             ::1
device insert                 foo     10 2008-07-07 11:11             ::1
device delete                   -     10 2008-07-07 11:11             ::1
===============================================================================

You can see more options by running logdump -h. In a later release this information will be available via the web interface.

RackMonkey 1.2.5 Documentation Index