Advertisement
Guest User

Untitled

a guest
Feb 19th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. <UserManager>
  2. <Realm>
  3. <Configuration>
  4. <AdminRole>admin</AdminRole>
  5. <AdminUser>
  6. <UserName>admin</UserName>
  7. <Password>XXXXXX</Password>
  8. </AdminUser>
  9. <EveryOneRoleName>everyone</EveryOneRoleName> <!-- By default users in thsi role sees the registry root -->
  10. <!-- <ReadOnly>false</ReadOnly> -->
  11. <MaxUserNameListLength>500</MaxUserNameListLength>
  12. <Property name="url">jdbc:h2:repository/database/WSO2CARBON_DB</Property>
  13. <Property name="userName">wso2carbon</Property>
  14. <Property name="password">wso2carbon</Property>
  15. <Property name="driverName">org.h2.Driver</Property>
  16. <Property name="maxActive">50</Property>
  17. <Property name="maxWait">60000</Property>
  18. <Property name="minIdle">5</Property>
  19. </Configuration>
  20. <UserStoreManager
  21. class="org.wso2.carbon.user.core.ldap.LDAPUserStoreManager">
  22. <Property name="ConnectionURL">ldap://localhost:389</Property>
  23. <Property name="ConnectionName">cn=admin,dc=ysd,dc=com</Property>
  24. <Property name="ConnectionPassword">admin32</Property>
  25. <Property name="UserSearchBase">ou=People,dc=ysd,dc=com</Property>
  26. <Property name="UserNameListFilter">(objectClass=person)</Property>
  27. <Property name="UserNameAttribute">uid</Property>
  28. <Property name="ReadLDAPGroups">false</Property>
  29. <Property name="GroupSearchBase">ou=People,dc=ysd,dc=com</Property>
  30. <Property name="GroupSearchFilter">(objectClass=groupOfNames)</Property>
  31. <Property name="GroupNameAttribute">cn</Property>
  32. <Property name="MembershipAttribute">member</Property>
  33. </UserStoreManager>
  34. <AuthorizationManager
  35. class="org.wso2.carbon.user.core.authorization.JDBCAuthorizationManager">
  36. </AuthorizationManager>
  37. </Realm>
  38. </UserManager>`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement