Skip to main content

How to Install OpenManage Server Administrator (OMSA) 7.3 on RedHat Enterprise Linux (RHEL) 6


Article Summary: This article provides information on how to install OpenManage Server Administrator (OMSA) 7.3 on RedHat Enterprise Linux (RHEL) 6.

  • Ensure you are logged in as 'root'
  • Create directory for download :
    • # mkdir /root/omsa
    • # cd /root/omsa
  • Download installation package :
  • # wget http://downloads.dell.com/FOLDER01540127M/1/OM-SrvAdmin-Dell-Web-LX-7.3.0-350_A00.tar.gz
  • # tar zxvf OM-SrvAdmin-Dell-Web-LX-7.3.0-350_A00.tar.gz
  • # ./setup.sh
  • Input '10' to install all components
  • Input 'i' for install
  • Input 'Y' to start services
  • If you need to install any dependencies, you can install them via 'yum' or in the /Packages folder on the OS media
  • Install any missing dependency with the 'rpm' command using the example below :
    • # rpm -Uvh libcmpiCppImpl0-2.0.1-5.el6.x86_64.rpm
  • # ./opt/dell/srvadmin/sbin/srvadmin-services.sh status
  • # iptables -A INPUT -p tcp -m tcp --dport 1311 -j ACCEPT
  • # iptables-save
  • # service iptables restart
  • Decompress the installation package :
  • Execute installation script :
NOTE : There are dependencies required that may not be currently installed on your server. The installation will fail if required dependencies are not installed.
  • After installation has completed, ensure the OMSA services are started :
  • Open OMSA port in iptables :
  • Restart iptables service :
  • Navigate your browser to http://[IP or hostname of server]:1311 to begin using OMSA





Quick Tips content is self-published by the Dell Support Professionals who resolve issues daily. In order to achieve a speedy publication, Quick Tips may represent only partial solutions or work-arounds that are still in development or pending further proof of successfully resolving an issue. As such Quick Tips have not been reviewed, validated or approved by Dell and should be used with appropriate caution. Dell shall not be liable for any loss, including but not limited to loss of data, loss of profit or loss of revenue, which customers may incur by following any procedure or advice set out in the Quick Tips.

Refrence Links:-
RACADM Command Line Interface for DRAC Systems Management - Wiki
Dell Knowledge Base
purpose of the Dell OpenManage

Comments

Popular posts from this blog

20 perl programming tips

1. List all Installed Perl Modules from Unix Command Line Get a list of all installed perl modules as shown below. $ perl -MFile::Find=find -MFile::Spec::Functions -Tlw -e 'find { wanted => sub { print canonpath $_ if /\.pm\z/ }, no_chdir => 1 }, @INC' /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/HTML/Filter.pm /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/HTML/LinkExtor.pm /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/HTML/PullParser.pm /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/HTML/Parser.pm /usr/lib/perl5/vendor_perl/5.8.8/i386-linux-thread-multi/HTML/TokeParser.pm ..... In the above example, File::Find  and  File::Spec::Functions  module are used to list all installed modules. -M option  loads the module. It executes  use module  before executing the script -T option  enables taint checking, which instructs perl to keep track of data from the user and avoid doing anything insecure w...

Perl and Excel: How to Read, Write, Parse Excel Files using Perl

If you want to manipulate excel files programmatically, you can use Perl Spreadsheet module, which provides an object interface that makes it easier to create and parse Excel files. Install Spreadsheet WriteExcel Module Method 1: Standard install using make Download the zipped tar file of  Spreadsheet-ParseExcel  and  Spreadsheet-WriteExcel  from cpan. Untar and unzip the module as follows: tar -zxvf Spreadsheet-WriteExcel.tar.gz cd to the directory the tar creates. Execute the steps below to to install the Spreadsheet-WriteExcel module. perl Makefile.PL make make test make install Use the above procedure to install Spreadsheet-ParseExcel also. Method 2: CPAN.pm install If you have CPAN.pm configured you can install the module as follows: perl -MCPAN -e 'install "Spreadsheet::WriteExcel"' perl -MCPAN -e 'install "Spreadsheet::ParseExcel"' For additional installation help refer to: How To Install Perl Modules Manually and Using ...

How to Connect to MySQL from Perl

How do I connect to a MySQL database from a perl program? use perl DBI module to connect to a MySQL database as explained below. If you don’t have perl DBI and DBD::mysql module installed, install perl module using cpan as we discussed earlier. # perl -MCPAN -e shell cpan> install DBI cpan> install DBD::mysql On a very high level, you’ll have to do the following three steps to connect to a MySQL database and get data. 1. Connect to the MySQL Database In the DBI module, you’ll use the connect function as shown below. $dbc = DBI->connect($source, $username, $password) DBI->connect function takes the following three arguments: $source – This is in the format of “DBI:mysql:[database]:[hostname]”. Replace the [database] and [hostname] with values from your system. In the example shown below, it is connecting to the database called “mycompany” that is running on the localhost. $username – The username that is used to connect to the MySQL database. $pass...