Author |
Message
|
ferquirino |
Posted: Fri May 16, 2008 6:41 am Post subject: Deploy Fail |
|
|
Apprentice
Joined: 05 May 2008 Posts: 34 Location: São Paulo, Brazil
|
In performing deploy, nothing appears in the event log.
In the event viewer of the windows, appears the following error:
[color=red]( WBRK6_DEFAULT_BROKER ) Broker ''WBRK6_DEFAULT_BROKER'' has failed to connect to WebSphere MQ with reason code '2059'. No broker components will be started until the queue manager becomes available.
While starting Broker ''WBRK6_DEFAULT_BROKER'', an attempt to connect to the queue manager failed with a reason code of '2059'. This will prevent any further broker components from starting.
Ensure the queue manager is started succesfully. Investigate the WebSphere MQ queue manager problem and resolve any problems [/color]
Someone help me?
Thanks in advance.  |
|
Back to top |
|
 |
elvis_gn |
Posted: Fri May 16, 2008 6:57 am Post subject: |
|
|
 Padawan
Joined: 08 Oct 2004 Posts: 1905 Location: Dubai
|
Hi ferquirino,
Please do not double post.
Explanation for reason code 2059.
2059 0x0000080b MQRC_Q_MGR_NOT_AVAILABLE
Regards. |
|
Back to top |
|
 |
ferquirino |
Posted: Fri May 16, 2008 7:14 am Post subject: |
|
|
Apprentice
Joined: 05 May 2008 Posts: 34 Location: São Paulo, Brazil
|
Sorry for double post. I don't know where post.
I'm beginner in MQ. What does MQRC_Q_MGR_NOT_AVAILABLE?
Do I have a channel wrong?  |
|
Back to top |
|
 |
mqmatt |
Posted: Fri May 16, 2008 7:21 am Post subject: |
|
|
 Grand Master
Joined: 04 Aug 2004 Posts: 1213 Location: Hursley, UK
|
Try starting the queue manager. |
|
Back to top |
|
 |
ferquirino |
Posted: Fri May 16, 2008 7:29 am Post subject: |
|
|
Apprentice
Joined: 05 May 2008 Posts: 34 Location: São Paulo, Brazil
|
In MQ explorer is started. The service is started too.
It would be a failure of communication between the broker and queue manager? It may be something wrong in the communication TCP / IP? |
|
Back to top |
|
 |
ferquirino |
Posted: Fri May 16, 2008 10:49 am Post subject: |
|
|
Apprentice
Joined: 05 May 2008 Posts: 34 Location: São Paulo, Brazil
|
Someone has idea of what? I tried the Toolkit, the interface of Configuration Manager Proxy API Exerciser and this code below, but not had success.
Code: |
ConfigManagerConnectionParameters cmcp = new MQConfigManagerConnectionParameters(
"localhost", 2414, "DEFAULT_QUEUE_MANAGER");
ConfigManagerProxy cmp = ConfigManagerProxy.getInstance(cmcp);
TopologyProxy t = cmp.getTopology();
BrokerProxy b = t.getBrokerByName("DEFAULT_BROKER");
ExecutionGroupProxy e = b.getExecutionGroupByName("default");
System.out.println("Chegou perto");
e.deploy("Test.bar", true, 600);
System.out.println("Fez Deploy"); |
|
|
Back to top |
|
 |
Vitor |
Posted: Mon May 19, 2008 11:56 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
ferquirino wrote: |
It would be a failure of communication between the broker and queue manager? It may be something wrong in the communication TCP / IP? |
It would. The 2059 code is a common one and has been often discussed on the forum. The Search facility will turn up a lot of useful tips. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
fjb_saper |
Posted: Mon May 19, 2008 12:52 pm Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
ferquirino wrote: |
In MQ explorer is started. The service is started too.
It would be a failure of communication between the broker and queue manager? It may be something wrong in the communication TCP / IP? |
Does each qmgr have a Listener defined running on its own unique port?
Did you define the channels accordingly: 'host(port)' ?  _________________ MQ & Broker admin |
|
Back to top |
|
 |
anupama |
Posted: Mon May 19, 2008 8:50 pm Post subject: |
|
|
Novice
Joined: 03 Apr 2008 Posts: 19
|
Hi
According to u reasoncode i think the problem is in cofigaration MB just chek it once....start all the services once again and check it... |
|
Back to top |
|
 |
|