Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ## ---------------------------------------------------------------------------
- ## Licensed to the Apache Software Foundation (ASF) under one or more
- ## contributor license agreements. See the NOTICE file distributed with
- ## this work for additional information regarding copyright ownership.
- ## The ASF licenses this file to You under the Apache License, Version 2.0
- ## (the "License"); you may not use this file except in compliance with
- ## the License. You may obtain a copy of the License at
- ##
- ## http://www.apache.org/licenses/LICENSE-2.0
- ##
- ## Unless required by applicable law or agreed to in writing, software
- ## distributed under the License is distributed on an "AS IS" BASIS,
- ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- ## See the License for the specific language governing permissions and
- ## limitations under the License.
- ## ---------------------------------------------------------------------------
- ##########################
- ## Define basic objects ##
- ##########################
- dn: dc=maxcrc,dc=com
- objectClass: dcObject
- objectClass: organization
- dc: maxcrc
- o: Apache
- dn: dc=activemq,dc=maxcrc,dc=com
- objectClass: dcObject
- #objectClass: container
- objectClass: domain
- objectClass: top
- #cn: activemq
- dc: activemq
- dn: ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: organizationalUnit
- objectClass: top
- ou: ActiveMQ
- dn: ou=Services,dc=activemq,dc=maxcrc,dc=com
- ou: Services
- objectClass: organizationalUnit
- objectClass: top
- dn: cn=mqbroker,ou=Services,dc=activemq,dc=maxcrc,dc=com
- cn: mqbroker
- objectClass: organizationalRole
- objectClass: top
- objectClass: simpleSecurityObject
- userPassword: {SSHA}YvMAkkd66cDecNoejo8jnw5uUUBziyl0
- description: Bind user for MQ broker
- ###################
- ## Define groups ##
- ###################
- dn: ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: organizationalUnit
- objectClass: top
- ou: Group
- dn: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: admins
- member: uid=admin
- objectClass: groupOfNames
- objectClass: top
- dn: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: users
- member: uid=jdoe
- objectClass: groupOfNames
- objectClass: top
- ##################
- ## Define users ##
- ##################
- dn: ou=User,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: organizationalUnit
- objectClass: top
- ou: User
- dn: uid=admin,ou=User,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- uid: admin
- userPassword: {SSHA}YvMAkkd66cDecNoejo8jnw5uUUBziyl0
- objectclass: uidObject
- objectclass: organizationalPerson
- objectclass: person
- objectclass: top
- cn: Admin
- sn: Admin
- dn: uid=jdoe,ou=User,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- uid: jdoe
- userPassword: {SSHA}YvMAkkd66cDecNoejo8jnw5uUUBziyl0
- objectclass: uidObject
- objectclass: organizationalPerson
- objectclass: person
- objectclass: top
- cn: Jane Doe
- sn: Doe
- #########################
- ## Define destinations ##
- #########################
- dn: ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: organizationalUnit
- objectClass: top
- ou: Destination
- dn: ou=Topic,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: organizationalUnit
- objectClass: top
- ou: Topic
- dn: ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: organizationalUnit
- objectClass: top
- ou: Queue
- ## TEST.FOO
- dn: cn=TEST.FOO,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: TEST.FOO
- description: A queue
- objectClass: applicationProcess
- objectClass: top
- dn: cn=admin,cn=TEST.FOO,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: admin
- description: Admin privilege group, members are roles
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=read,cn=TEST.FOO,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: read
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=write,cn=TEST.FOO,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: write
- objectClass: groupOfNames
- objectClass: top
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- ## TEST.FOOBAR
- dn: cn=TEST.FOOBAR,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: TEST.BAR
- description: A queue
- objectClass: applicationProcess
- objectClass: top
- dn: cn=admin,cn=TEST.FOOBAR,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: admin
- description: Admin privilege group, members are roles
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=read,cn=TEST.FOOBAR,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: read
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: uid=jdoe,ou=User,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=notthere,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=write,cn=TEST.FOOBAR,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: write
- objectClass: groupOfNames
- objectClass: top
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: uid=jdoe,ou=User,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- ## FOO.>
- dn: cn=FOO.$,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: FOO.$
- description: A queue
- objectClass: applicationProcess
- objectClass: top
- dn: cn=admin,cn=FOO.$,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: admin
- description: Admin privilege group, members are roles
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=read,cn=FOO.$,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: read
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=write,cn=FOO.$,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: write
- objectClass: groupOfNames
- objectClass: top
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- ## BAR.*
- dn: cn=BAR.*,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: BAR.*
- description: A queue
- objectClass: applicationProcess
- objectClass: top
- dn: cn=admin,cn=BAR.*,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: admin
- description: Admin privilege group, members are roles
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=read,cn=BAR.*,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: read
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=write,cn=BAR.*,ou=Queue,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: write
- objectClass: groupOfNames
- objectClass: top
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- #######################
- ## Define advisories ##
- #######################
- dn: cn=ActiveMQ.Advisory.$,ou=Topic,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: ActiveMQ.Advisory.$
- objectClass: applicationProcess
- objectClass: top
- description: Advisory topics
- dn: cn=read,cn=ActiveMQ.Advisory.$,ou=Topic,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: read
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=write,cn=ActiveMQ.Advisory.$,ou=Topic,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: write
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=admin,cn=ActiveMQ.Advisory.$,ou=Topic,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: admin
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- ######################
- ## Define temporary ##
- ######################
- dn: ou=Temp,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: organizationalUnit
- objectClass: top
- ou: Temp
- dn: cn=read,ou=Temp,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: read
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=write,ou=Temp,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: write
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
- dn: cn=admin,ou=Temp,ou=Destination,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- cn: admin
- member: cn=admins,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- member: cn=users,ou=Group,ou=ActiveMQ,dc=activemq,dc=maxcrc,dc=com
- objectClass: groupOfNames
- objectClass: top
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement