How to check system WBEM Provider Compatibility

From Wiki-UX.info
Jump to: navigation, search

Abstract

The following articles explains a method to verificate that all HP-UX system installed Providers are the minimial compatible version for the installed versions of WBEM.

Determine Current WBEM version

# swlist -l product WBEMServices
# Initializing...
# Contacting target "<hostname>"...
#
# Target:  <hostname>
#

  WBEMServices                  A.02.09        WBEM Services CORE Product

== Obtain the Release Notes corresponding to the system HP WBEM Services installed product.

Determine the system Providers version

The following procedure describe a quick method to obtained the installed Provider version number to check againt the WBEM Provider Compatibility table.

1. Create a text file containing the list of the provider methods, for example, for A.02.09

# cat > /tmp/providers.lst << EOF
iCOD
NParProvider
SW-DIST
WBEMP-LAN
VParProvider
WBEMP-FCP
SCSI-Provider
LVM-Provider
utilProvider
vmProvider
SysFaultMgmt
PRM-Sw-Lib
SGWBEMProviders
EMS-Core
WBEMP-FS
SAS-PROVIDER
WBEMPIOTreeIP
AppDiscAgent
RAIDSAPROVIDER
KernalProviders
gWLM-Agent
EOF


2. Create a text file with a list of current installed software.

# swlist -l product > /tmp/swlist.out


3. Create a report of the installed providers based on the list created on step 1.

# cat /tmp/providers.lst | xargs -n 1 -i grep {} /tmp/swlist.out
  iCOD                  B.11.31.09.02.00.07 Instant Capacity
  NParProvider          B.31.02.00     nPartition Provider
  SW-DIST               B.11.31.0909.340 HP-UX Software Distributor
  WBEMP-LAN             B.11.31.0909   LAN Providers - CIM/WBEM Providers for Ethernet interfaces.
  VParProvider          B.11.31.01.03  vPar Provider
  WBEMP-FCP             B.11.31.0909   FC Provider - CIM/WBEM Provider for Fibre Channel HBAs
  SCSI-Provider         B.11.31.0903   CIM/WBEM Provider for SCSI HBA
  utilProvider          A.01.08.02.01  Utilization Provider
  PRM-Sw-Lib            C.03.05        Process Resource Manager PRM-Sw-Lib product
  SGWBEMProviders       A.03.00.00     HP Serviceguard WBEM Providers SD Product
  EMS-Core              A.04.20.31.03  EMS Core Product
  WBEMP-FS              B.11.31        HP-UX File System CIM Provider.
  gWLM-Agent            A.04.01.01.107 HP Global Workload Manager Agent
  gWLM-Agent-LTU        A.03.00.01.05  HP Global Workload Manager Agent LTU

Section 2

Section 3

Reference

Authors