This document was published at:
http://kb.xensource.com/entry.jspa?externalID=443&categoryID=52
Using Dell OpenManage on a XenServer Host
Author:
Christoph Berlin,
Created on:
Nov 13, 2007 12:13 PM
Summary
Dell OpenManage is a management software suitethat allows you to monitor and manage physical Dell servers. Thissoftware package is available for RedHat Enterprise Linux 4.
TheXenServer Host runs Xen on a bare-bones CentOS Linux operating system,which is very similar to RedHat Enterprise Linux 4. It should thereforebe feasible to install OpenManage on a XenServer Host and manage it aswith any other Linux server.
This document shows you how to install Dell OpenManage on a XenServer Host. Note: Using OpenManage on a XenServer Host is an unsupported configuration. Dell does not support installing the Dell OpenManage management software on CentOS. XenSource does not support installing any additional packagaes on the XenServer Host.
Procedure
- Download the Dell OpenManage Server Administrator Managed Node software package for RedHat Enterprise Linux 5. You will find a selection of packages on the Dell support homepage.
- Copy the tar.gz file to your XenServer Host.
- Extract the tar.gz file by using the command
# tar -xzf yourfilename.tar.gz - Normally this setup script would fail because the CentOS operating system is not identical RedHat Enterprise Linux 4, but you can edit the script so that it will run on CentOS as well, as follows:
- First, change the permissions of the file:
# chmod +w setup.sh - Then, edit the file:
# vi setup.sh - Then, go to line 2976 and change the lines
# Set default values for return variables. GBL_OS_TYPE=${GBL_OS_TYPE_UKNOWN} GBL_OS_TYPE_STRING="UKNOWN" to # Set default values for return variables. GBL_OS_TYPE=${GBL_OS_TYPE_RHEL5} GBL_OS_TYPE_STRING="RHEL5" - Save changes and close the file.
- Install the package compat-libstdc++-296-2.96-138.i386.rpm on the XenServer Host:
# yum install compat-libstdc++-296-2.96-138.i386.rpm - Start the Dell OpenManage installation by using the command:
# ./setup.sh - Follow the instructions on the screen and finish the installation.
- After installation finishes successfully, you have to change your firewall settings to allow communication through the ports that OpenManage uses, as follows:
- Edit the firewall file:
# vi /etc/sysconfig/iptables - Add the following lines:
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 1311 -j ACCEPT - Save and close the file.
- Restart the firewall service:
# service iptables restart - Now should be able to connect to the Dell OpenManage web interface of your server. Point your browser to https://yourserver:1311/ and login with your root user and password.
Tested with: OM_5.2.0_ManNode_A00.tar.gz
|