| 12345678910111213141516171819202122232425262728 |
- # Bind User: wpsbinddev
- dn: cn=wpsbinddev,ou=middleware,dc=btn,dc=co,dc=id
- objectClass: simpleSecurityObject
- objectClass: organizationalRole
- cn: wpsbinddev
- userPassword: {SSHA}Mcu2IVL99zWsPXy2NL5BzWonG9HR6nEA
- # Grant permissions to wpsbinddev and admin
- dn: olcDatabase={0}config,cn=config
- changetype: modify
- add: olcAccess
- olcAccess: to * by dn.exact="cn=admin,dc=btn,dc=co,dc=id" write by dn.exact="cn=wpsbinddev,dc=btn,dc=co,dc=id" read by * none
- dn: olcDatabase={1}mdb,cn=config
- changetype: modify
- add: olcAccess
- olcAccess: to * by dn.exact="cn=admin,dc=btn,dc=co,dc=id" write by dn.exact="cn=wpsbinddev,dc=btn,dc=co,dc=id" read by * none
- # Grant wpsbinddev access to schema and config
- dn: cn=schema,cn=config
- changetype: modify
- add: olcAccess
- olcAccess: to * by dn.exact="cn=wpsbinddev,dc=btn,dc=co,dc=id" read by * none
- dn: cn=config
- changetype: modify
- add: olcAccess
- olcAccess: to * by dn.exact="cn=wpsbinddev,dc=btn,dc=co,dc=id" read by * none
|