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 » WebSphere Message Broker (ACE) Support » Execution Group not found error

Post new topic  Reply to topic
 Execution Group not found error « View previous topic :: View next topic » 
Author Message
yaemu
PostPosted: Sun Dec 12, 2010 6:11 am    Post subject: Execution Group not found error Reply with quote

Novice

Joined: 27 Oct 2010
Posts: 17

Hi everyboy,

I am using message broker 6.1 on AIX machine, when I try to deploy a bar file to the execution group, I got the following error:

====================================================
$ mqsideploy -i localhost -p 2415 -q MYQM -b WBRK6_BROKER -e MAIN_CARDS -a MainCardFlow.bar -m

BIP1044I: Connecting to the Configuration Manager's queue manager...
BIP1045I: Connecting to the Configuration Manager...
BIP1038S: Execution group not found.

Either the execution group 'MAIN_CARDS' was not found in the Configuration Manager repository for broker 'WBRK6_BROKER', or you do not have the required permissions to view it.

Reissue the command specifying a valid execution group to which you have access.

====================================================

I am sure that the execution group is defined on the broker because I tried to create another one with the same name and I got the following error:
====================================================
$ mqsicreateexecutiongroup -i localhost -p 2415 -q MYQM -b WBRK6_BROKER -e MAIN_CARDS

BIP1044I: Connecting to the Configuration Manager's queue manager...
BIP1045I: Connecting to the Configuration Manager...
BIP1124I: Creating execution group 'MAIN_CARDS' on broker 'WBRK6_BROKER'...
BIP1125E: The execution group could not be created.

The utility was asked to create execution group 'MAIN_CARDS' on broker 'WBRK6_BROKER', but it was not completed successfully by the Configuration Manager. The Configuration Manager reported the following error(s): [{message=BIP1160E, detail=BIP1160E: Duplicate name 'MAIN_CARDS' for ExecutionGroup label within configuration repository.

An error occurred when attempting to save ExecutionGroup label 'MAIN_CARDS' to the configuration repository because another ExecutionGroup label already exists with the same name.

Rename the ExecutionGroup label and retry the operation., source=ConfigMgr, timestamp=Sun Dec 12 16:06:56 CST 2010}]

Determine the cause of the problem by reviewing the error messages. If the problem persists, contact your IBM support representative.

====================================================
I tried to delete it :
====================================================
$ mqsideleteexecutiongroup -i localhost -p 2415 -q MYQM -b WBRK6_BROKER -e MAIN_CARDS

BIP1044I: Connecting to the Configuration Manager's queue manager...
BIP1045I: Connecting to the Configuration Manager...
BIP1038S: Execution group not found.

Either the execution group 'MAIN_CARDS' was not found in the Configuration Manager repository for broker 'WBRK6_BROKER', or you do not have the required permissions to view it.

Reissue the command specifying a valid execution group to which you have access.

====================================================

when I try to deploy any other bar file to any other execution group I got the same error.

Thanks.
Back to top
View user's profile Send private message
zpat
PostPosted: Sun Dec 12, 2010 6:19 am    Post subject: Reply with quote

Jedi Council

Joined: 19 May 2001
Posts: 5866
Location: UK

Permissions.

Can you do it with the toolkit?
Back to top
View user's profile Send private message
yaemu
PostPosted: Sun Dec 12, 2010 6:24 am    Post subject: Reply with quote

Novice

Joined: 27 Oct 2010
Posts: 17

no I can not, the Machine I am working on is a production server and there is toolkit on it and I cannot connect a toolkit to it.
Back to top
View user's profile Send private message
zpat
PostPosted: Sun Dec 12, 2010 8:34 am    Post subject: Reply with quote

Jedi Council

Joined: 19 May 2001
Posts: 5866
Location: UK

Permissions.

Read the manual.
Back to top
View user's profile Send private message
yaemu
PostPosted: Sun Dec 12, 2010 8:56 am    Post subject: Reply with quote

Novice

Joined: 27 Oct 2010
Posts: 17

thanks zpat.

but it is not a permissions issue.

I use the mqm user who has the authority to deal with Broker.
Back to top
View user's profile Send private message
mqjeff
PostPosted: Sun Dec 12, 2010 9:05 am    Post subject: Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 17447

yaemu wrote:
thanks zpat.

but it is not a permissions issue.

I use the mqm user who has the authority to deal with Broker.


Are you positive you are the mqm user?

Are you positive that the mqm user is not only a member of mqbrks, but also has been mqsicreateaclentry -x F -p or that otherwise at least an mqsicreateaclentry -x D -b WBRK6_BROKER has been established for this user?

What does the ConfigMgr show in the system log when you try to do this?

Are you running this command on the same machine as the confmgr, or on a different machine?
Back to top
View user's profile Send private message
smdavies99
PostPosted: Sun Dec 12, 2010 9:20 am    Post subject: Reply with quote

Jedi Council

Joined: 10 Feb 2003
Posts: 6076
Location: Somewhere over the Rainbow this side of Never-never land.

mqjeff wrote:

Are you running this command on the same machine as the confmgr, or on a different machine?


See this:-
Quote:

$ mqsicreateexecutiongroup -i localhost -p 2415 -q MYQM -b WBRK6_BROKER -e MAIN_CARDS


I'd guess that the answer is nope.
_________________
WMQ User since 1999
MQSI/WBI/WMB/'Thingy' User since 2002
Linux user since 1995

Every time you reinvent the wheel the more square it gets (anon). If in doubt think and investigate before you ask silly questions.
Back to top
View user's profile Send private message
mqjeff
PostPosted: Sun Dec 12, 2010 1:53 pm    Post subject: Reply with quote

Grand Master

Joined: 25 Jun 2008
Posts: 17447

smdavies99 wrote:
See this:-
Quote:

$ mqsicreateexecutiongroup -i localhost -p 2415 -q MYQM -b WBRK6_BROKER -e MAIN_CARDS


I'd guess that the answer is nope.


Uhm. For some values of "nope".

Clearly they are running the command on the same machine. Well spotted.

Makes it at least twice as likely it is actually a permissions error.
Back to top
View user's profile Send private message
Vitor
PostPosted: Sun Dec 12, 2010 2:58 pm    Post subject: Reply with quote

Grand High Poobah

Joined: 11 Nov 2005
Posts: 26093
Location: Texas, USA

yaemu wrote:
I use the mqm user who has the authority to deal with Broker.


You may think it has authority, but the broker seems to disagree with you. Remember that mqm does not have implict authority against broker the way it does with a queue manager.
_________________
Honesty is the best policy.
Insanity is the best defence.
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic  Reply to topic Page 1 of 1

MQSeries.net Forum Index » WebSphere Message Broker (ACE) Support » Execution Group not found 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.