Hello,
I'm getting the following error message in the "OpenManage Essentials (OME)" web interface (under "Manage/System Update/Issues And Resolutions For Updates") after doing a discover/inventory of a freshly built server:
Error Message:
"Reason: Inventory collector is not installed on this server
Recommendation: Mount OMSA DVD on the server. Install 'srvadmin-cm' rpm and restart OMSA services. Once install completes re-inventory the server with OME"
The server using the "OpenManage Server Administrator (OMSA)" client is running Ubuntu 14.04 (64-bit) and the OME version 1.3 server is running Windows 2008 R2.
Here's the corresponding section of the install script used to build with "root" rights after first boot at build time (all "$VARIABLES" are predefined accordingly):
echo -e "\n############ INSTALLING SNMP - `date` ############\n"
apt-get -y install snmpd snmp snmp-mibs-downloader
sed -i "s;export MIBS=;#export MIBS=;" /etc/default/snmpd
sed -i "s; -I -smux,mteTrigger,mteTriggerConf;;" /etc/default/snmpd
sed -i "s;-p /var/run/snmpd.pid;-p /var/run/snmpd.pid -c /etc/snmp/snmpd.conf;" /etc/default/snmpd
cp --archive --verbose /etc/snmp/snmpd.conf /etc/snmp/snmpd.orig.conf
echo -e "view all included .1
access notConfigGroup "" any noauth exact all none none
smuxpeer .1.3.6.1.4.1.674.10892.1
trap2sink $SNMP_SERVER $SNMP_COMMUNITY
rocommunity $SNMP_COMMUNITY $SNMP_SERVER" | tee "/etc/snmp/snmpd.conf"
service snmpd start
echo -e "\n############ INSTALLING DELL OPENMANAGE SERVER ADMINISTRATOR (OMSA) - `date` ############\n"
echo -e "deb http://linux.dell.com/repo/community/ubuntu $OS_CODE_NAME openmanage" | tee "/etc/apt/sources.list.d/linux.dell.com.sources.list"
gpg --keyserver pool.sks-keyservers.net --recv-key 1285491434D8786F
gpg -a --export 1285491434D8786F | apt-key add -
apt-get update
apt-get -y install srvadmin-all
echo -e "\n$USER * Administrator" | tee -a "/opt/dell/srvadmin/etc/omarolemap"
update-rc.d dsm_om_connsvc defaults
References I've used to get things up and running:
- The "Dell OpenManage Ubuntu Repository"...
http://linux.dell.com/repo/community/ubuntu/ - The Dell "OpenManage Essentials 1.3 Frequently Asked Questions "
http://en.community.dell.com/techcenter/systems-management/w/wiki/3265.openmanage-essentials-faq.aspx - About simplifying the "SNMP.conf" file (for debugging at least)...
http://en.community.dell.com/support-forums/servers/f/177/t/19063445.aspx - About the need to update "etc/default/snmpd" to fix "unknown" status...
http://en.community.dell.com/techcenter/os-applications/w/wiki/4678.monitoring-ubuntu-servers-with-openmanage-essentials.aspx - About Inventory Collector issues...
http://en.community.dell.com/techcenter/systems-management/f/4494/t/19526668.aspx - And based on this web document (http://en.community.dell.com/techcenter/systems-management/f/4494/t/19425042.aspx), I've tried installing any/all needed dependencies for 'srvadmin-cm' with no improvement.
Any help with this error would be greatly appreciated!
Regards and thanks in advance,
John