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 » deletion of execution group.

Post new topic  Reply to topic
 deletion of execution group. « View previous topic :: View next topic » 
Author Message
krisrock
PostPosted: Tue Nov 27, 2007 12:54 pm    Post subject: deletion of execution group. Reply with quote

Acolyte

Joined: 11 Sep 2007
Posts: 65

I have an execution group created on a broker.
I try to delete it.

When I issue the delete command.

I get

BIP1038S: Execution Group not found

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

when I do a mqsilist BroExp

Execution group is listed.


What could be the issue?
Back to top
View user's profile Send private message
shalabh1976
PostPosted: Tue Nov 27, 2007 10:34 pm    Post subject: Reply with quote

Partisan

Joined: 18 Jul 2002
Posts: 381
Location: Gurgaon, India

Can you list your delete command as is.
Also try to delete from the toolkit.
You can also delete from the config manager proxy.
_________________
Shalabh
IBM Cert. WMB V6.0
IBM Cert. MQ V5.3 App. Prog.
IBM Cert. DB2 9 DB Associate
Back to top
View user's profile Send private message Yahoo Messenger MSN Messenger
mqmatt
PostPosted: Wed Nov 28, 2007 3:17 am    Post subject: Reply with quote

Grand Master

Joined: 04 Aug 2004
Posts: 1213
Location: Hursley, UK

The error is quite clear:
Quote:
Either the execution group 'EXP' was not found in the Configuration Manager repository for broker 'BroExp', or you do not have required permissions to view it.

Do you have the permissions defined by mqsicreateaclentry to modify the broker?
If not, you won't be able to run the delete command remotely; mqsilist will still show you the execution group, because in this case you are bypassing the Config Manager's security and going direct to the broker.
Back to top
View user's profile Send private message
krisrock
PostPosted: Wed Nov 28, 2007 10:04 am    Post subject: Reply with quote

Acolyte

Joined: 11 Sep 2007
Posts: 65

here is the delete command

mqsideleteexecutiongroup -b BroExp -e EXP -i hostname -p 1421 -q EXP.QM1 -v /tmp/deleteEG.log


User is a part of aclentry
Back to top
View user's profile Send private message
chris boehnke
PostPosted: Wed Nov 28, 2007 10:53 am    Post subject: Reply with quote

Partisan

Joined: 25 Jul 2006
Posts: 369

krisrock wrote:
here is the delete command

mqsideleteexecutiongroup -b BroExp -e EXP -i hostname -p 1421 -q EXP.QM1 -v /tmp/deleteEG.log


User is a part of aclentry


Hi,
I executed the below command and its working fine for me:

mqsideleteexecutiongroup -i hostname -p 1414(port number of ConfigMgr's QMgr) -q ConfigMgrQMgrName -b BrokerName -e EGName

Skipped Compiling {java/util/Hashtable}{rehash}
Skipped Compiling {java/util/Hashtable}{rehash}
BIP1045I: Connecting to the Configuration Manager...
BIP1127I: This command will implicitly remove all resource(s) deployed to the execution group: Flow1, flow2, Msgset1
BIP1130I: Deleting the execution group from the Configuration Manager's repository and from broker 'MBBK1'...
BIP1092I: Broker MBBK1 successfully processed the deployment request.
BIP8071I: Successful command completion.
Back to top
View user's profile Send private message
chris boehnke
PostPosted: Wed Nov 28, 2007 11:07 am    Post subject: Reply with quote

Partisan

Joined: 25 Jul 2006
Posts: 369

chris boehnke wrote:
krisrock wrote:
here is the delete command

mqsideleteexecutiongroup -b BroExp -e EXP -i hostname -p 1421 -q EXP.QM1 -v /tmp/deleteEG.log


User is a part of aclentry


Hi,
I executed the below command and its working fine for me:

mqsideleteexecutiongroup -i hostname -p 1414(port number of ConfigMgr's QMgr) -q ConfigMgrQMgrName -b BrokerName -e EGName

Skipped Compiling {java/util/Hashtable}{rehash}
Skipped Compiling {java/util/Hashtable}{rehash}
BIP1045I: Connecting to the Configuration Manager...
BIP1127I: This command will implicitly remove all resource(s) deployed to the execution group: Flow1, flow2, Msgset1
BIP1130I: Deleting the execution group from the Configuration Manager's repository and from broker 'MBBK1'...
BIP1092I: Broker MBBK1 successfully processed the deployment request.
BIP8071I: Successful command completion.


After deleting the EG by executing above command, I reissued the same delete command. Here is the output:

mqsideleteexecutiongroup -i hostname -p 1414 -q ConfigMgr's QMgr name......
BIP1044I: Connecting to the Configuration Manager's queue manager...
Skipped Compiling {java/util/Hashtable}{rehash}
Skipped Compiling {java/util/Hashtable}{rehash}
BIP1045I: Connecting to the Configuration Manager...
BIP1038S: Execution group not found.

Either the execution group 'EG1' was not found in the Configuration Manager repository for broker 'MBBK1', 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 think in your case, the execution group might have deleted but the ProcessID is still running. Can you try to kill the process ID which you will get by executing the command 'mqsilist'?.
Back to top
View user's profile Send private message
krisrock
PostPosted: Wed Nov 28, 2007 2:30 pm    Post subject: Reply with quote

Acolyte

Joined: 11 Sep 2007
Posts: 65

after I kill the process, a new process id is again starts...
means the the execution group still runs...
Back to top
View user's profile Send private message
PeterPotkay
PostPosted: Wed Nov 28, 2007 3:00 pm    Post subject: Reply with quote

Poobah

Joined: 15 May 2001
Posts: 7722

krisrock wrote:

User is a part of aclentry


Ok.....but what rights do you have? Or not have?

(mqsilistaclentry)
_________________
Peter Potkay
Keep Calm and MQ On
Back to top
View user's profile Send private message
krisrock
PostPosted: Thu Nov 29, 2007 8:27 am    Post subject: Reply with quote

Acolyte

Joined: 11 Sep 2007
Posts: 65

brgede001:/opt/IBM/mqsi/6.0/bin>mqsilistaclentry configmgrExp -a -u kris -b BroExp
BIP1778I: kris - USER - F - Brg... - Broker
BIP8071I: Successful command completion.
Back to top
View user's profile Send private message
chris boehnke
PostPosted: Thu Nov 29, 2007 1:27 pm    Post subject: Reply with quote

Partisan

Joined: 25 Jul 2006
Posts: 369

krisrock wrote:
after I kill the process, a new process id is again starts...
means the the execution group still runs...


Hi,
if it is development environment, can you try with the Complete Deploy on the broker?.
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 » deletion of execution group.
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.