cancel
Showing results for 
Search instead for 
Did you mean: 

Possible Status text of Dispatcher

former_member192421
Active Participant
0 Kudos

Dear All,

Can any one tell the possible status text of dispatcher in different scenario?

For example, if I execute the following command, then it give the result as

mypc devadm 65> sapcontrol -nr 00 -function GetSystemInstanceList

20.04.2016 22:19:48

GetSystemInstanceList

OK

hostname, instanceNr, httpPort, httpsPort, startPriority, features, dispstatus

mypc, 0, 50013, 0, 3, J2EE|IGS, GREEN

mypc, 1, 50113, 0, 1, MESSAGESERVER|ENQUE, GREEN

mypc devadm 66>

Here if you see, the dispstatus is GREEN.

My question is apart from GREEN or YELLOW or GRAY, what could be the other colors and what is their meaning?

Regards,

Rajkumar

Accepted Solutions (0)

Answers (2)

Answers (2)

raquel_gomez
Employee
Employee
0 Kudos

Hi,

As mentioned by Isaias, command:

  sapcontrol -nr $$ -function GetSystemInstanceList

provides a description of the status of each Instance on the system.

They can be Green, Yellow or Gray.

If one of the Instances shows yellow status, you can execute command:

   sapcontrol -nr $$ -function GetProcessList

to check the status of each process running on that instance.

They will also show those three colors (Green, Yellow or Gray).

To find out why a process shows yellow or gray status, you may check its trace file.

Regards,

Raquel

isaias_freitas
Advisor
Advisor
0 Kudos

Hello Rajkumar,

There are no other colors. Only the three colors you listed.

  • GREEN means that the process is running and everything is OK;
  • GRAY means that the process is not running;
  • YELLOW means that the process is running, but something is not OK. Using "GetProcessList" instead of "GetSystemInstanceList", against the affected instance ("-nr $$"), should reveal more details about what could be wrong.

The above is valid to any process of the SAP instance, not only to the Dispatcher.

Regards,

Isaías