Kbase P100593: How to determine the process id of the AdminServer on UNIX?
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  9/22/2008 |
|
Status: Unverified
GOAL:
How to determine the process id of the AdminServer on UNIX?
FACT(s) (Environment):
UNIX
Progress 9.x
OpenEdge 10.x
FIX:
Use the lsof UNIX command. lsof does not work from non-global zone in solaris 10Solaris 10 and using ZONES(more on zones in solaris 10 coming soon) :
lsof | grep <port number the AdminService was started on>
ie:
$ lsof | grep 20991
java 15286 usr 11u IPv6 0x3038797cc60 0t0 TCP *:20991 (LISTEN)
PID=15286
NOTE: lsof does not work from non-global zones in Solaris 10.
lsof listings on Solaris 10 with zones, do not display ports.