Author |
Message
|
tso0rxp |
Posted: Mon Mar 03, 2003 9:57 am Post subject: Dreaded AMQ9209 error |
|
|
 Voyager
Joined: 07 Jan 2002 Posts: 85
|
Background:
Solaris server running v5.2 MQ and is considered our HUB. Remotely connects to several SPOKE servers running various OS and MQ versions.
New server put in network. AIX 433 running v5.2. This is considered a SPOKE server.
Created new sender/receiver channels (using port 1415) on both servers. New AIX server can start sender channel to HUB but HUB cannot start sender channel to AIX.
Channel initiator running on both servers. I can ping AIX server from HUB and can telnet to AIX from HUB. Nothing logged on AIX server when the HUB sender channel fails... the only log I get is on the HUB (AMQ9209).
We are running older versions of AIX and those servers connect to HUB OK but they are also running v5.0 of MQ. |
|
Back to top |
|
 |
mrlinux |
Posted: Mon Mar 03, 2003 11:55 am Post subject: |
|
|
 Grand Master
Joined: 14 Feb 2002 Posts: 1261 Location: Detroit,MI USA
|
Sounds like the listener on the AIX box is not up and running. _________________ Jeff
IBM Certified Developer MQSeries
IBM Certified Specialist MQSeries
IBM Certified Solutions Expert MQSeries |
|
Back to top |
|
 |
tso0rxp |
Posted: Mon Mar 03, 2003 12:29 pm Post subject: |
|
|
 Voyager
Joined: 07 Jan 2002 Posts: 85
|
Pardon my ignorance but how do I tell if the listener is up on unix (specifically AIX) servers? |
|
Back to top |
|
 |
kolban |
Posted: Mon Mar 03, 2003 12:45 pm Post subject: |
|
|
 Grand Master
Joined: 22 May 2001 Posts: 1072 Location: Fort Worth, TX, USA
|
Determine the port on which the listener should be listening. Run the Unix command:
netstat -an | more
find the port number. If it is in listening mode, then chances are good it is the listner. If no port is found, likely that your listener is not listening. |
|
Back to top |
|
 |
vennela |
Posted: Mon Mar 03, 2003 12:47 pm Post subject: |
|
|
 Jedi Knight
Joined: 11 Aug 2002 Posts: 4055 Location: Hyderabad, India
|
do a process listing and look for runmqlsr
ps -ef | grep runmqlsr
You can start a listener by
runmqlsr -m QMGRNAME -t tcp -p 1415 &
replace QMGRNAME with your QMGR name.
You can verify that there is something listening on port 1415 by
netstat -na | grep 1415
-------
Venny |
|
Back to top |
|
 |
tso0rxp |
Posted: Mon Mar 03, 2003 1:00 pm Post subject: |
|
|
 Voyager
Joined: 07 Jan 2002 Posts: 85
|
Thanks to all for the 'hints'. Unix admin put the entry into /etc/inetd.conf incorrectly. I love this forum. Brandon, where do I donate? _________________ Bob Perry
MQ Administrator |
|
Back to top |
|
 |
|