Community

Discussions  |  Feature Requests  |  Tips and Tricks

Nimbula Director monitoring integration with ZenOss (through using snmp)

#1July 8, 2011 11:11:09

Jeremy Bar
Registered: 2011-01-05
Posts: 30

Nimbula Director monitoring integration with ZenOss (through using snmp)

For integration with ZenOss, Nagios and other Management tools that work with snmp, you need to perform the following actions on all the nodes: (We recommend using cssh for accessing all the nodes at the same time)
  1. Install the snmp CentOS packages:
  2. yum install net-snmp net-snmp-utils
    To make this easy, you can install them using yum, but you need the following CentOS.repo file copied to /etc/yum.repos.d/ on all the nodes:
    [base]
    name=CentOS-$releasever - Base
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
    #baseurl=http://mirror.centos.org/centos/$releasever/os/$basearch/
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #released updates 
    [updates]
    name=CentOS-$releasever - Updates
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
    #baseurl=http://mirror.centos.org/centos/$releasever/updates/$basearch/
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #additional packages that may be useful
    [extras]
    name=CentOS-$releasever - Extras
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
    #baseurl=http://mirror.centos.org/centos/$releasever/extras/$basearch/
    gpgcheck=1
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #additional packages that extend functionality of existing packages
    [centosplus]
    name=CentOS-$releasever - Plus
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
    #baseurl=http://mirror.centos.org/centos/$releasever/centosplus/$basearch/
    gpgcheck=1
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    
    #contrib - packages by Centos Users
    [contrib]
    name=CentOS-$releasever - Contrib
    mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
    #baseurl=http://mirror.centos.org/centos/$releasever/contrib/$basearch/
    gpgcheck=1
    enabled=0
    gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-5
    

  3. Do the proper customization of the config file:
    /etc/snmp/snmp.conf
    For ZenOss, change the system view for "view systemview included .1".

  4. Restart the snmp service, and you should be able to configure ZenOss to scan the nodes and get their monitoring data through SNMP.

Attachments:

attachment CentOS.repo (1.9 KB)