ASG
IBM
Zystems
Cressida
Icon
Netflexity
 
  MQSeries.net
Search  Search       Tech Exchange      Education      Certifications      Library      Info Center      SupportPacs      LinkedIn  Search  Search                                                                   FAQ  FAQ   Usergroups  Usergroups
 
Register  ::  Log in Log in to check your private messages
 
RSS Feed - WebSphere MQ Support RSS Feed - Message Broker Support

MQSeries.net Forum Index » General IBM MQ Support » AMQ9509 error

Post new topic  Reply to topic Goto page Previous  1, 2, 3, 4, 5, 6  Next
 AMQ9509 error « View previous topic :: View next topic » 
Author Message
Gaya3
PostPosted: Mon Jun 23, 2008 5:00 am    Post subject: Reply with quote

Jedi

Joined: 12 Sep 2006
Posts: 2493
Location: Boston, US

solomon_13000 wrote:
telnet localhost 1414
took me to a blank dark screen.

telnet localhost 1415
Connecting To localhost...Could not open connection to the host, on port 1415: Connect failed


you could have done this earlier

as you are using local host, and you said you created listeners on both side and why this happened to 1415 port,
_________________
Regards
Gayathri
-----------------------------------------------
Do Something Before you Die
Back to top
View user's profile Send private message
solomon_13000
PostPosted: Mon Jun 23, 2008 5:03 am    Post subject: Reply with quote

Master

Joined: 13 Jun 2008
Posts: 284

I closed my firewall and still my ping for 1415 does not work.
Back to top
View user's profile Send private message
solomon_13000
PostPosted: Mon Jun 23, 2008 5:11 am    Post subject: Reply with quote

Master

Joined: 13 Jun 2008
Posts: 284

so basically does it mean I can only run 1 listener at a time?. Unless I use two machine for each queue manager then I can run both listener at the same time?
Back to top
View user's profile Send private message
exerk
PostPosted: Mon Jun 23, 2008 5:30 am    Post subject: Reply with quote

Jedi Council

Joined: 02 Nov 2006
Posts: 6339

solomon_13000 wrote:
so basically does it mean I can only run 1 listener at a time?. Unless I use two machine for each queue manager then I can run both listener at the same time?


No! You can run more than one Listener on a server. There is a configuration issue, you just need to find it.

Configure a new Listener on a different port, e.g. 1420, and start it. Then repeat the telnet test; if it works, change the CONNAME attribute to that port, then you can troubleshoot why port 1415 seems to be unusable.

A side note: does MQ Explorer show both Listeners as running? Can you see two instances of runmqlsr in Task Manager?
_________________
It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys.
Back to top
View user's profile Send private message
solomon_13000
PostPosted: Mon Jun 23, 2008 5:43 am    Post subject: Reply with quote

Master

Joined: 13 Jun 2008
Posts: 284

All the other port number does not seem to work.
Back to top
View user's profile Send private message
exerk
PostPosted: Mon Jun 23, 2008 5:45 am    Post subject: Reply with quote

Jedi Council

Joined: 02 Nov 2006
Posts: 6339

exerk wrote:
...does MQ Explorer show both Listeners as running? Can you see two instances of runmqlsr in Task Manager?

_________________
It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys.
Back to top
View user's profile Send private message
solomon_13000
PostPosted: Mon Jun 23, 2008 6:00 am    Post subject: Reply with quote

Master

Joined: 13 Jun 2008
Posts: 284

according to the task manager only 1 listener is running.
Back to top
View user's profile Send private message
exerk
PostPosted: Mon Jun 23, 2008 6:11 am    Post subject: Reply with quote

Jedi Council

Joined: 02 Nov 2006
Posts: 6339

Want to guess that it's the one on 1414?

Leave Task Manager visible and stop the running Listener, check in Task Manager that it has gone, then start the other Listener, i.e. the one on 1415. Check Task Manager again to see if it's running, and if it is, see if your channel runs. If it does, try and start the other Listener. Also, check the logs to see if there are any Listener related entries.

We could have got to this point far sooner if you had posted what you could see in MQ Explorer, error logs and Task Manager - please help us to help you.
_________________
It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys.


Last edited by exerk on Mon Jun 23, 2008 6:12 am; edited 1 time in total
Back to top
View user's profile Send private message
bruce2359
PostPosted: Mon Jun 23, 2008 6:11 am    Post subject: Reply with quote

Poobah

Joined: 05 Jan 2008
Posts: 9475
Location: US: west coast, almost. Otherwise, enroute.

Yes, you can have multiple listeners for a single qmgr.

Since a listener object belongs to one qmgr, naming it like you have (listener name contains qmgr name) is redundant - but valid - but confusing. It is confusing because a listener listens for ALL inbound message flows from all qmgrs - not just those from a particular qmgr

One of IBMs recommendation is LISTENER.TCP.1416 or LISTENER.LU62.1417.
_________________
I like deadlines. I like to wave as they pass by.
ב''ה
Lex Orandi, Lex Credendi, Lex Vivendi. As we Worship, So we Believe, So we Live.
Back to top
View user's profile Send private message
solomon_13000
PostPosted: Mon Jun 23, 2008 6:30 am    Post subject: Reply with quote

Master

Joined: 13 Jun 2008
Posts: 284

This works:

amqsput QMGRA.QMGRB.RQST QMGRA
Sample AMQSPUT0 start
target queue is QMGRA.QMGRB.RQST
hello world
Sample AMQSPUT0 end

amqsget QMGRA.QMGRB.RQSTIN QMGRB
Sample AMQSGET0 start
message <hello world>
no more messages
Sample AMQSGET0 end

But this don't:

amqsput QMGRB.QMGRA.RQST QMGRB
Sample AMQSPUT0 start
target queue is QMGRB.QMGRA.RQST
mama
Sample AMQSPUT0 end

amqsget QMGRB.OMGRA.RQSTIN QMGRA
Sample AMQSGET0 start
MQOPEN ended with reason code 2085
unable to open queue for input
Sample AMQSGET0 end

Regards.
Back to top
View user's profile Send private message
exerk
PostPosted: Mon Jun 23, 2008 6:36 am    Post subject: Reply with quote

Jedi Council

Joined: 02 Nov 2006
Posts: 6339

solomon_13000 wrote:
This works:

amqsput QMGRA.QMGRB.RQST QMGRA
Sample AMQSPUT0 start
target queue is QMGRA.QMGRB.RQST
hello world
Sample AMQSPUT0 end

amqsget QMGRA.QMGRB.RQSTIN QMGRB
Sample AMQSGET0 start
message <hello world>
no more messages
Sample AMQSGET0 end

But this don't:

amqsput QMGRB.QMGRA.RQST QMGRB
Sample AMQSPUT0 start
target queue is QMGRB.QMGRA.RQST
mama
Sample AMQSPUT0 end

amqsget QMGRB.OMGRA.RQSTIN QMGRA
Sample AMQSGET0 start
MQOPEN ended with reason code 2085
unable to open queue for input
Sample AMQSGET0 end

Regards.

_________________
It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys.
Back to top
View user's profile Send private message
solomon_13000
PostPosted: Mon Jun 23, 2008 6:40 am    Post subject: Reply with quote

Master

Joined: 13 Jun 2008
Posts: 284

amqsget QMGRB.QMGRA.RQSTIN QMGRA
Sample AMQSGET0 start
MQOPEN ended with reason code 2085
unable to open queue for input
Sample AMQSGET0 end
Back to top
View user's profile Send private message
exerk
PostPosted: Mon Jun 23, 2008 6:46 am    Post subject: Reply with quote

Jedi Council

Joined: 02 Nov 2006
Posts: 6339

http://www-1.ibm.com/support/docview.wss?uid=swg21166940
_________________
It's puzzling, I don't think I've ever seen anything quite like this before...and it's hard to soar like an eagle when you're surrounded by turkeys.
Back to top
View user's profile Send private message
solomon_13000
PostPosted: Mon Jun 23, 2008 6:59 am    Post subject: Reply with quote

Master

Joined: 13 Jun 2008
Posts: 284

It seems ok. I think I found the error. One moment.
Back to top
View user's profile Send private message
solomon_13000
PostPosted: Mon Jun 23, 2008 7:40 am    Post subject: Reply with quote

Master

Joined: 13 Jun 2008
Posts: 284

WOW it works. I am so glad to be able to resolve and learn alot from all of you
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Goto page Previous  1, 2, 3, 4, 5, 6  Next Page 5 of 6

MQSeries.net Forum Index » General IBM MQ Support » AMQ9509 error
Jump to:  



You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Protected by Anti-Spam ACP
 
 


Theme by Dustin Baccetti
Powered by phpBB © 2001, 2002 phpBB Group

Copyright © MQSeries.net. All rights reserved.