Author |
Message
|
krisrock |
Posted: Tue Nov 27, 2007 12:54 pm Post subject: deletion of execution group. |
|
|
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 |
|
 |
shalabh1976 |
Posted: Tue Nov 27, 2007 10:34 pm Post subject: |
|
|
 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 |
|
 |
mqmatt |
Posted: Wed Nov 28, 2007 3:17 am Post subject: |
|
|
 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 |
|
 |
krisrock |
Posted: Wed Nov 28, 2007 10:04 am Post subject: |
|
|
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 |
|
 |
chris boehnke |
Posted: Wed Nov 28, 2007 10:53 am Post subject: |
|
|
 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 |
|
 |
chris boehnke |
Posted: Wed Nov 28, 2007 11:07 am Post subject: |
|
|
 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 |
|
 |
krisrock |
Posted: Wed Nov 28, 2007 2:30 pm Post subject: |
|
|
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 |
|
 |
PeterPotkay |
Posted: Wed Nov 28, 2007 3:00 pm Post subject: |
|
|
 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 |
|
 |
krisrock |
Posted: Thu Nov 29, 2007 8:27 am Post subject: |
|
|
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 |
|
 |
chris boehnke |
Posted: Thu Nov 29, 2007 1:27 pm Post subject: |
|
|
 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 |
|
 |
|