cancel
Showing results for 
Search instead for 
Did you mean: 

SQL Query or Powershell Script

San_Bangalore
Level 5

I am looking for a SQL query or a powershell command to check the status of EV service status. We are using EV version 10.0.4

1 ACCEPTED SOLUTION

Accepted Solutions

Rob_Wilcox1
Level 6
Partner

So there are plenty of resources on the internet to check whether a service is running.

 

But that doesn't mean EV will be functioning.

 

What is that you're trying to do?

Working for cloudficient.com

View solution in original post

4 REPLIES 4

Rob_Wilcox1
Level 6
Partner

So there are plenty of resources on the internet to check whether a service is running.

 

But that doesn't mean EV will be functioning.

 

What is that you're trying to do?

Working for cloudficient.com

Pradeep-Papnai
Level 6
Employee Accredited Certified

Hi San,

As Rob said, there is nothing from EV side & there plenty of website may give you such result, it just require some changes in server/service name …etc. Such as if you need to know if EV admin service running then run following power shell.

Get-Service -ComputerName <evserverName> Name "Enterprise vault Admin service"

I have also attached one other PS1 file that you can run to see all EV services status for all EV servers. First create a txt file in ‘C:\servers.txt’ contain names of EV server & run attached powershell.

Regards

Pradeep Papnai

GabeV
Level 6
Employee Accredited

If you need to monitor the Enterprise Vault servers, there are other options available:

Using Enterprise Vault Monitoring
http://www.symantec.com/docs/HOWTO108048

About monitoring using Enterprise Vault Operations Manager
http://www.symantec.com/docs/HOWTO108054

About monitoring using SCOM
http://www.symantec.com/docs/HOWTO108506

You can also configure the Windows Event Viewer to send an email when a specific event ID is generated under the Symantec Enterprise Vault event log.

I hope this helps.

San_Bangalore
Level 5

Thank you all.