Author |
Message
|
chintu |
Posted: Mon Dec 04, 2006 10:38 am Post subject: [SOLVED]Authentication Exit process ID on AIX |
|
|
 Acolyte
Joined: 27 Dec 2004 Posts: 64
|
Hello all,
How do I search for the system process that is associated with the Authentication exit? Since our authentication exit is implemented in java, I did ps -ef|grep java. This only showed the java apps that are deployed on WAS running on the same box.
Environment:WF 3.6 on AIX
I need the process ID to see if our nightly WF recycle cause a new Auth exit process to start, or to use an already existing Auth exit process?
Any help is highly appreciated.
Last edited by chintu on Tue Dec 05, 2006 6:41 am; edited 1 time in total |
|
Back to top |
|
 |
killer |
Posted: Mon Dec 04, 2006 10:59 am Post subject: |
|
|
 Apprentice
Joined: 06 Jul 2006 Posts: 35
|
The ps command writes the current status of active processes.
So If you want ot check the kernel processes what I guess u mean system process here then use ps -k
U can write a script to check ur desired process.
Ps -a shows all the processes.
u can go through various option avaiblabe.
Just type man ps. |
|
Back to top |
|
 |
chintu |
Posted: Mon Dec 04, 2006 12:09 pm Post subject: |
|
|
 Acolyte
Joined: 27 Dec 2004 Posts: 64
|
I can list all the processes, which are about 250 -300. How do I know which particular process is the one that refers to the Authentication exit. What is the search string that I should use? |
|
Back to top |
|
 |
jmac |
Posted: Mon Dec 04, 2006 1:55 pm Post subject: |
|
|
 Jedi Knight
Joined: 27 Jun 2001 Posts: 3081 Location: EmeriCon, LLC
|
It is my opinion that the authentication exit runs in the fmcamain (Admin Server) process. _________________ John McDonald
RETIRED |
|
Back to top |
|
 |
hos |
Posted: Mon Dec 04, 2006 11:30 pm Post subject: |
|
|
Chevalier
Joined: 03 Feb 2002 Posts: 470
|
John is right,
fmcamin links Java runtime dynamic link library and calls the Authentication Exit. This also answers your original question: the Authentication Exit gets recycled, too when you recycle fmcamain. |
|
Back to top |
|
 |
chintu |
Posted: Tue Dec 05, 2006 6:40 am Post subject: |
|
|
 Acolyte
Joined: 27 Dec 2004 Posts: 64
|
John/Hos ,Thanks for your help. |
|
Back to top |
|
 |
|