Category: Dell Compellent

Dell Compellent – Verify the Enterprise Manager and Enterprise Services Agent Service Status

You may use the Microsoft Windows PowerShell script below to remotely verify the Enterprise Manager and Enterprise Services Agent Service status. These services are essential to a healthy Enterprise Manager infrastructure.

<#
.SYNOPSIS
This script will provide the status of the Enterprise Manager service on EM01. Additionally, it will provide the status of the Enterprise Services Agent Service on servers utilizing the Enterprise Manager Server Agent.
.DESCRIPTION
This script will automate the process of providing the status of the Enterprise Manager service on EM01. Additionally, it will automate the the process of providing the status of the Enterprise Services Agent Service on servers utilizing the Enterprise Manager Server Agent.
.EXAMPLE
N/A.
.AUTHOR
Written by Noel Enrique Alvarez on Friday, September 30, 2016.
#>

#Query the status of the Enterprise Manager service on EM01
Get-Service -ComputerName EM01 | Where-Object {$_.name -eq “EnterpriseManagerDataCollector”}

#Query the status of the Enterprise Services Agent Service on servers utilizing the Enterprise Manager Server Agent
Get-Service -ComputerName SERVER01 | Where-Object {$_.name -eq “CompellentEMServerAgent”}
Get-Service -ComputerName SERVER02 | Where-Object {$_.name -eq “CompellentEMServerAgent”}
Get-Service -ComputerName SERVER03 | Where-Object {$_.name -eq “CompellentEMServerAgent”}

#End of script


Dell Compellent – Verify Front and Back End Ports

You may use the Dell Enterprise Manager Data Collector Manager to configure the SMTP settings of a Dell Compellent Storage Area Network (SAN) and provide you with alerts. In addition to this you may manually verify that the front and back end ports of the storage array are Up. To do so navigate to Dell Storage > Storage CentersStorage Center > Fault Domains. As you can see from the output below all of the ports are Up.

01

02