RackTablesInstallHowto

From RackTables Wiki
Revision as of 03:44, 28 July 2011 by Aethylred (talk | contribs)
Jump to navigation Jump to search

RackTables On Ubuntu 7.10 Server

Rackdemolayout.png

Originally published by Mike Fields at HowtoForge

In the words of the developers, RackTables is "A management framework for rackspace, IP addresses, servers, switches, routers and much more!". To me, it is the solution to a project that I have been working on for some time - A means of mapping out our data center at work. I have, for a long time, wanted a way to map out and make available in a web interface, our server racks. An example of what RackTables looks like can be seen to the right


The closest I have come is using network-weathermap and although it is a fantastic application, I don't think that the use I was trying to use it for was its intended purpose. So, when I stumbled upon !RackTables a few days ago, I was thrilled. While I was installing it on a development system, I (as usual) made notes of my steps so that if I decided to implement it on a production system, I would have my guide laid out before me. That being the case, I decided to share what I put together with you.

Now, onto the tutorial. There are two methods that you can use to implement !RackTables - a web based install and a command line install. I will cover both in this tutorial. Just as a side note, this guide works under the assumption that you have an existing and functional LAMP server. If not, then you may want to follow "The Perfect Server - Ubuntu Gutsy Gibbon (Ubuntu 7.10)" guide.

Scripted Installation

Download and Deploy RackTables Web Application

The first step is to obtain the source code, unpack it and move it into a web accessible directory. Perform the following commands to prepare for the web based portion of the tutorial.

cd /tmp/
wget wget --no-check-certificate https://downloads.sourceforge.net/project/racktables/RackTables-0.19.6.tar.gz
tar -xvzf RackTables-0.19.6.tar.gz
sudo cp -r RackTables-0.19.6/wwwroot /var/www/racktables

At this point, you will be prompted for your password, since you are issuing the 'sudo' command - type it in and press the "Enter" key.

CentOS and RedHat

For CentOS and RedHat the destination directory is different:

sudo mv -r RackTables-0.19.6/wwwroot /var/www/html/racktables

Create Database And Database User

RackTables does use a MySQL back end to store the data, so you will need to create a database and a user for the installation to be successful. Perform the following commands to create everything that you will need to proceed.

mysql -uroot -p

You will now be prompted for the password for your 'root' MySQL user. Type it in and press the "Enter" key. Once you are at the MySQL command prompt, issue the following commands:

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');
exit

With that done, it is now time to proceed to the actual installation.

Using browser based install script

It is time to begin the web based portion of the install. Open your favorite web browser and point it to the installation URL.

Browser install: Step 1

Rackwebstep1.png

Open your browser and navigate to your RackTables installation http://address.to.your.server/racktables/install.php, which should give a response similar to the image on the left. The repored errors are normal at this stage of the installation, and it is safe to ignore them as they will be taken care of during the install.

Click "Proceed" to continue.

Browser Install: Step 2

Rackwebstep2.png

Again, click "Proceed" to continue.

Notes for Step 2:
  1. If your failure is on "Multibyte string extension", install php-mbstring via package manager (yum, up2date, etc). (This has been tested and works for CentOS 5.5 64bit via yum)
  2. If your failure is on "PCRE compiled with --enable-unicode-properties", then please follow these directions:
    1. On the command line run "pcretest -C" to confirm it says "No Unicode properties support".
    2. Follow this wonderful guide for rebuilding the pcre package to include the "--enable-unicode-properties". Once built, use RPM to force the re-installation/upgrade of the package. (rpm -Uvh --force ~/src/rpm/RPMS/x86_64/pcre-6.6-2.el5_1.7.x86_64.rpm)
    3. Rerun "pcretest -C" to confirm that it now says "Unicode properties support".
    4. Using your package manager, reinstall php. (sudo yum reinstall php).
    5. Restart httpd (sudo /etc/rc.d/init.d/httpd restart)
    6. Click Retry on Step 2, and confirm this passes.
  3. If your failure is on "LDAP extension", install php-ldap via package manager (yum, up2date, etc). (This has been tested and works for CentOS 5.5 64bit via yum)

Browser Install: Step 3

Rackwebstep3.png

Rackwebstep4.png

Rackwebstep5.png

Now we need to do a little more command line work. In your terminal, enter the following commands:

sudo touch /var/www/racktables/inc/secret.php
sudo chmod 666 /var/www/racktables/inc/secret.php

Now click on the "retry" button to proceed further with step 3.

Browser Install: Step 4

Rackwebstep6.png

Fill in the requested data (as shown in the example above) with the database username and password that you created above. When done, again click on the "retry" button to move on with step 3.

Browser Install: Step 5

Rackwebstep7.png

Rackwebstep8.png

With that finally out of the way, click "Proceed" to continue to step 4.

Browser Install: Step 6

Rackwebstep9.png

Make sure that there are no errors present and click "proceed" to continue.

In this step, you will enter the password you wish to use for the "admin" login for your RackTables Web site. Enter the password that you want and click on the "retry" button.

With the password set, click "proceed" to continue.

Browser Install: Completed

Rackwebstep10.png

Congratulations! !RackTables has now been installed. Click on the "proceed" button to be prompted for your login information. The default username is "admin" and you will use the password that you created in step 5.


Command Line Installation (DOES NOT WORK in 0.17.0 and later releases)

!RackTables also offers a terminal based method of installation. Being a command line kind of guy, this was my initial choice (probably not the popular one). It begins exactly like the web based method.

The first step is to obtain the source code, unpack it and move it into a web accessible directory. Perform the following commands:

cd /tmp/
wget http://racktables.org/files/RackTables-0.14.12.tar.gz
tar -xvzf RackTables-0.14.12.tar.gz
sudo mv RackTables-0.14.12 /var/www/racktables

At this point, you will be prompted for your password, since you are issuing the 'sudo' command - type it in and press the "Enter" key.

Create Database And Database User

!RackTables does use a MySQL back end to store the data, so you will need to create a database and a user for the installation to be successful. Perform the following commands to create everything that you will need to proceed.

mysql -uroot -p

You will now be prompted for the password for your 'root' MySQL user. Type it in and press the "Enter" key. Once you are at the MySQL command prompt, issue the following commands:

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');
exit

With that done, it is now time to proceed to the actual installation.

Edit Configs

There are a few changes that need to be made to some of the configuration files, before you can proceed. The first will be to create the "secret.php" file and create your admin password. Issue the following commands:

sudo cp inc/secret-sample.php inc/secret.php
sudo nano inc/secret.php

Within the "secret.php" file you will find a section to set your database username and password as shown below:

$db_username = 'username';
$db_password = 'password';

Change it so that it resembles this:

$db_username = 'rackuser';
$db_password = 'rackpw';

Now press Ctrl-O to write out your changes and Ctrl-X to exit the editor.

You now need to edit the "init-auth.sql" file to set your admin password. Issue the following command to do so:

sudo nano install/init-auth.sql

The file will initially look like this:

INSERT INTO `UserAccount` (`user_id`, `user_name`, `user_enabled`, `user_passwo$
VALUES (1,'admin','yes',sha1(
# Uncomment and change the next line to your password, e.g.:
# 'mysecretpassword'
# ... and comment out the line below:
PLEASE_READ_THE_INSTALL_DOCUMENTATION
),'RackTables Administrator');

Change it to resemble my example below:

INSERT INTO `UserAccount` (`user_id`, `user_name`, `user_enabled`, `user_password_hash`, `user_realname`)
VALUES (1,'admin','yes',sha1(
# Uncomment and change the next line to your password, e.g.:
'some_secret_password_only_you_know'
# ... and comment out the line below:
# PLEASE_READ_THE_INSTALL_DOCUMENTATION
),'racktables Administrator');

Import SQL Files Into Your Database

You now need to import some sql files into your database to set the structure and create your admin account. Perform the following commands (keeping in mind that after each one, you will need to enter your "root" MySQL password):

mysql -uroot -p racktables < install/init-structure.sql
mysql -uroot -p racktables < install/init-auth.sql
mysql -uroot -p racktables < install/init-dictbase.sql
mysql -uroot -p racktables < install/init-dictvendors.sql

Once that is done, you are ready to log in to your newly created !RackTables web site.

Opening The Web Site

Using your favorite web browser and point it to your web site's URL.

http://your_servers_ip_address/racktables/

You will be prompted for your username and password. The default username is admin and the password will be the one that you set in the "init-auth.sql" file above.

Rackwebstep10.png

Acknowledgements

That completes the installation guide, covering both methods of the installation process. Something to keep in mind though is that even though I wrote this guide using Ubuntu 7.10 server, it is pretty generic. It should be easily adaptable to any distribution with minor difficulty.

This is a great project and I am happy that I found it. I hope that some of you will find it useful as well and that my guide makes it a little easier for you to implement.