service status command

The service status command shows the status of deployable services running on the node members.

Environment

  • Windows 2008
  • Linux

Authorization

Administrative user

Syntax

execute service status [<all|byMember|byService|byType> name]
Possible statuses include:
  • Started
  • Stopped
  • Quiesced
  • Starting
  • Stopping
  • Updating
  • Quiescing
  • Start_Failed
  • Stop_Failed
  • Retry_Scheduled
  • Update_Failed
  • Quiesce_Invoked

Option descriptions

[<byMember> name]
Sorts the information by the name of the member.
[<byService> name]
Sorts the information by the name of the service.
[<byType> name]
Sorts the information by the type of the service. Possible values include: AS2Receiver, WSSoapReceiver, MessagingReceiver, HTTPServer, ThreadPool, Storage.

Examples

Example: Showing all services across a cluster.
Shows all services across the cluster:
execute service status all 
MemberName:    ServiceName:    ServiceType:		Status:
MEG_OP1        PartnerA_AS2    AS2Receiver		STARTED
MEG_OP1        PartnerB_AS2    AS2Receiver		STOPPED
MEG_OP2        PartnerA_AS2    AS2Receiver		QUIESCED
MEG_OP2        PartnerB_AS2    AS2Receiver		QUIESCED
Example: Showing all services for a specific member.
Shows all services for a specific member:
execute service status byMember MEG_OP1 
MemberName:    ServiceName:    ServiceType:		Status:
MEG_OP1        PartnerA_AS2    AS2Receiver		STARTED
MEG_OP1        PartnerB_AS2    AS2Receiver		STOPPED
Example: Showing all services across the cluster of a specific service name.
Shows all services across the cluster of a specific service name:
execute service status byService PartnerA_AS2 
MemberName:    ServiceName:    ServiceType:		Status:
MEG_OP1        PartnerA_AS2    AS2Receiver		STARTED
MEG_OP2        PartnerA_AS2    AS2Receiver		QUIESCED
Example: Showing all services across the cluster of a specific service type.
Shows all services across the cluster of a specific service type:
execute service status byType AS2Receiver 
MemberName:    ServiceName:    ServiceType:		Status:
MEG_OP1        PartnerA_AS2    AS2Receiver		STARTED
MEG_OP1        PartnerB_AS2    AS2Receiver		STOPPED
MEG_OP2        PartnerA_AS2    AS2Receiver		QUIESCED
MEG_OP2        PartnerB_AS2    AS2Receiver		QUIESCED