You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

ACL file format for brokers.

File order - first match top to bottom.

group <group-name> = [user-list] [group-name-list]

action = [all|
    consume|
    publish|
    create|
    access|
    bind|
    unbind|
    delete|
    purge]

permission = [allow|allow-log|deny|deny-log]
property = [temporary|durable|owner]
object = [queue|exchange|routingkey]

acl permission <group-name|user-name> [action] [object=<object-name>] [property = <property-value>]

Example file:


group admin ted martin
group user-consume martin ted

acl allow carlt create queue=* temporary=true durable=false 
acl allow carlt create exchange=carl.* 
acl allow guest bind queue=* exchange=amq.topic routingkey=stocks.ibm.#  owner=self
acl allow user-consume create queue=tmp.* 
acl deny-log user-consume create queue=* durable=true
acl allow admin all
acl deny all

  • No labels