Author |
Message
|
mrlazy |
Posted: Mon Jul 31, 2006 12:37 pm Post subject: workflow admin utility timing out frequently |
|
|
Centurion
Joined: 19 Apr 2006 Posts: 144
|
I have a problem again! (MQWF 3.6 on AIX 5.3)
This time, I was able to start the administation utility using 'fmcautil' and was successfully able to connect using the web-client too. The commands used to start the server:
fmczchk -y fmc -d : 0 errors and 0 warnings
runmqtrm -m FMCQM -q FMCTRIGGER &
fmcamain -y fmc &
fmcautil -yfmc -uADMIN -ppassword.
But after some time, for some reason when I try to do fmcautil, it says
- FMC00014E Timeout occurred
- FMC16302I Not connected to any system.
I just don't understand why is this happening.
All channels are up and running.
ps -ef | grep main : i can see the two servers running.
ps -ef | grep runmqtrm - this process is also running
venny, ur thoughts plz?? |
|
Back to top |
|
 |
vennela |
Posted: Mon Jul 31, 2006 1:29 pm Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
Quote: |
ps -ef | grep main : i can see the two servers running.
ps -ef | grep runmqtrm - this process is also running |
Do you see fmcamain running?
Are you trying to logon from the wrokflow server box? |
|
Back to top |
|
 |
mrlazy |
Posted: Mon Jul 31, 2006 1:43 pm Post subject: |
|
|
Centurion
Joined: 19 Apr 2006 Posts: 144
|
Hi Venny,
I do not see the fmcamain process. It works fine when I start the fmcamain process.
But what else should I do so that I need not start the fmcamain process again and again? Because I did not kill this process by myself. I used the same command:
fmcamain -y fmc & |
|
Back to top |
|
 |
vennela |
Posted: Mon Jul 31, 2006 3:08 pm Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
The site was down for a while and I couldn't respond to you immediately.
You need to nohup it.
nohup fmcamain -y fmc & |
|
Back to top |
|
 |
mrlazy |
Posted: Mon Jul 31, 2006 6:02 pm Post subject: |
|
|
Centurion
Joined: 19 Apr 2006 Posts: 144
|
thanks for your reply
i remember seeing somewhere that just an '&' is enough for the process to be active all the time (eg: runmqlsr -m etc etc &). |
|
Back to top |
|
 |
vennela |
Posted: Mon Jul 31, 2006 7:12 pm Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
& means you are telling the process to run in background.
nohup (no hangup) means you are telling the process not to get terminated even when you close your telnet session.
Other processes like fmcemain, amq processes are not attached to any terminal. fmcamain process is attached to a terminal and by nohuping it, you will keep it running even when you close your telnet or ssh session. |
|
Back to top |
|
 |
|