I downloaded the MQ container and able to login using admin and app user.
I am able to see all queues from admin user but unable to all queues avilable using app user. As per the documentation, i need to add the permission on SYSTEM.ADMIN.COMMAND.QUEUE and SYSTEM.DEFAULT.MODEL.QUEUE queue.
Can anyone share the exact command used after “runmqsc QM1” to add this permission for app user? I tried to add below command and then I am not able to login with app user.
runmqsc QM1
SET AUTHREC PROFILE(‘SYSTEM.ADMIN.COMMAND.QUEUE’) PRINCIPAL(‘app’) OBJTYPE(QUEUE) AUTHADD(BROWSE,DSP,GET,INQ,PUT)
SET AUTHREC PROFILE(‘SYSTEM.DEFAULT.MODEL.QUEUE’) PRINCIPAL(‘app’) OBJTYPE(QUEUE) AUTHADD(DSP,GET)
REFRESH SECURITY(*) TYPE(CONNAUTH)
I need help with linux command to add and remove the permission on above mentioned system queues(specific to container deployment).