First you need to enable some standard Repos first
1 |
vi /etc/yum.repos.d/CentOS-Base.repo |
Enable base and updates.
Then you need to enable Dell yum Repos
1 |
wget -q -O - http://linux.dell.com/repo/hardware/latest/bootstrap.cgi | bash |
This will automatically create the repo files in /etc/yum.repos.d
Next we will install Dell OMSA (Openmanage) and the firmwall tools needing to upgrade firmware on a Dell Server.
1 |
yum install srvadmin-all firmware-tools |
Then we have to start the Dell Openmanage software this can be done with
1 |
/opt/dell/srvadmin/sbin/srvadmin-services.sh start |
And after this we can run
1 |
/opt/dell/srvadmin/sbin/srvadmin-services.sh status |
To check that the Dell Openmanage is running okay.
Now you just need to enable port 1311TCP in the firewall of yours Xenserver
1 |
nano /etc/sysconfig/iptables |
Now add the following line:
1 2 |
-A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 1311 -j ACCEPT |
And restart Xenserver firewall with this commands:
1 |
service iptables restart |
Now you should be able to browse to https://IPADDROfXenserver:1311 and logon with root and the root password.
If you want to enable SNMP Traps:
To make SNMP Traps working in DOM, you need to enable it:
1 |
nano /etc/snmp/snmpd.conf |
insert at the buttom of the file:
1 |
trapsink IPADDR Communityname |
And then restart SNMPD
1 |
service snmpd restart |
To update Dell firmware tools, you can use this commands:
1 2 |
yum install $(bootstrap_firmware) update_firmware --yes |
This will run for some time.