Monthly Archives: January 2013

Monitor EqualLogic Using System Center Operations Manager 2012

In this post I’ll describe the process of configuring monitoring of EqualLogic storage using System Center Operations Manager 2012 (SCOM).

Firstly, download the EqualLogic management pack suite from the EqualLogic download centre.  Import the management pack into SCOM according to the instructions in the user guide.

Log into the EqualLogic group configuration.  Click on Group Configuration, then the SNMP tab and if necessary, create a read only SNMP community.  In the screenshot below I have the SANHQ-RO community already created as I use EqualLogic SAN Head Quarters.

EqualLogic SCOM 2

In the SCOM management console, open the Administration tab and click on Discovery Wizard.

EqualLogic SCOM 3

When the wizard starts, click on Network devices.

EqualLogic SCOM 4

In the following screen enter a name for the group you’re going to monitor, select your management server and resource pool and click Next.

EqualLogic SCOM 5

On the Discovery Method screen choose Explicit discovery.

On the Default Account screen click on Create Account to create the SNMP Run As account.  Enter a display name and click Next

EqualLogic SCOM 6

Enter the read only community string from EqualLogic group configuration and click Create.

EqualLogic SCOM 7

Click Next to continue the discovery wizard.

EqualLogic SCOM 8

On the Devices screen click Add.  On the following screen enter the EqualLogic Group IP address, change the access mode the SNMP and select the Run As account you just created.

EqualLogic SCOM 9

Click Next to schedule discovery.  As this is a one-off discovery, choose Run the discovery rule manually.

EqualLogic SCOM 10

Click Next and Create to complete the wizard.  Choose to run the discovery rule when the wizard closes.

EqualLogic SCOM 11

After a few minutes you should see an entry under Network Devices with the IP address of your EqualLogic group.

EqualLogic SCOM 12

If you navigate to the Monitoring pane and expand Dell -> State Views -> EqualLogic Devices you should see your EqualLogic group listed.

EqualLogic SCOM 13

Update A SharePoint Web Part Using Update-SPSolution

I’ve just needed to upgrade a web part installed in our SharePoint farm.  I could have gone to Central Administration, retracted, then removed the solution, but I wanted a quicker procedure.

I originally installed the web part using the Add-SPSolution PowerShell command.  I first attempted to update the web part using Add-SPSoultion -LiteralPath %path to updated wsp file%, but received the error “A solution with the name …. already exists in the solution store.”

Solution Aready Exists

I realised I needed to use the Update-SPSolution PowerShell command.  This required two extra parameters, the name of the web part solution to be updated and the -GACDeployment parameter.  When I ran this command, the existing web part was automatically updated using a SharePoint timer job.

Update-SPSolution Command