类别:原创 服务器

Dell 服务器 安装 Dell OpenManage IT Assistant(现已被 Dell OpenManage Essentials 取代)客户端 OpenManage Server Administrator  

安装前请确保已安装好 snmp服务


本文参考:http://linux.dell.com/repo/hardware/latest/
http://hi.baidu.com/suping/blog/item/c4185f821d468bbe0df4d25e.html#0


安装方法:
1、安装yum库

[root@jedy ~]# wget -q -O - http://linux.dell.com/repo/hardware/latest/bootstrap.cgi | bash


出现下面的错误的解决方法
[root@jedy ~]# yum install srvadmin-all    
>> libcmpiCppImpl0-2.0.0Dell-1.2.el5.i386 from installed has depsolving >> problems >> --> libcmpiCppImpl0 conflicts with tog-pegasus >> Error: libcmpiCp出现:pImpl0 conflicts with tog-pegasus  

解决方法:

[root@jedy ~]# yum remove tog-pegasus   tog-pegasus-libs


2、更新omsa (如果系统安装过omsa)

[root@jedy ~]# yum upgrade


3、新安装omsa

[root@jedy ~]# yum install srvadmin-all  

[root@jedy ~]# /opt/dell/srvadmin/sbin/srvadmin-services.sh status    
[root@jedy ~]# /opt/dell/srvadmin/sbin/srvadmin-services.sh restart    
[root@jedy ~]# yum install dell_ft_install

[root@jedy ~]# yum install $(bootstrap_firmware)

[root@jedy ~]# /etc/init.d/dataeng restart    
[root@jedy ~]# /etc/init.d/dsm_om_connsvc restart  

[root@jedy ~]# service snmpd restart    
[root@jedy ~]# ps -aux | grep dell


补充说明:

1、OMSA SNMP设置

如果在snmp后安装的OMSA,则OMSA安装程序应该已经进行了这些更改。这些更改会设置OMSA

与SNMP代理程序的通信,并并将整个MIB事的只读访问权限授予公共团体。这对于OMSA和OME的正常工作是必需的。

[root@jedy ~]# vi /etc/snmp/snmpd.conf      验证以下三行是否存在;如果不存在,请在下面添加/修改这些行:

#       sec.name  source          community

com2sec notConfigUser  default    团体名

com2sec publicsec  default    团体名


view    all           included   .1


access  notConfigGroup ""      any       noauth    exact  all none none


# Allow Systems Management Data Engine SNMP to connect to snmpd using SMUX

smuxpeer .1.3.6.1.4.1.674.10892.1                 (此行是ITA服务器自动抓取OMSA设备的snmp信息)


trapsink    ITA服务器的ip 团体名                      (此行将会自动将告警信息发送到ITA服务器)


2、卸载OMSA

yum erase $(rpm -qa | grep srvadmin)