...
'MultiTenantRealmConfigBuilder' property should be set to '
org.wso2.carbon.user.core.config.multitenancy.SimpleRealmConfigBuilder
'. For example:Code Block language html/xml <Property name="MultiTenantRealmConfigBuilder">org.wso2.carbon.user.core.config.multitenancy.SimpleRealmConfigBuilder</Property>
This property is described in section Realm Configuration.
Add a property by the name 'passwordHashMethod' to 'JDBCUserStoreManager' default configuration shown above and set the value to 'SHA' or 'PLAIN_TEXT'. For example:
Code Block language html/xml <UserStoreManager class="org.wso2.carbon.user.core.jdbc.JDBCUserStoreManager"> ... <Property name="passwordHashMethod">SHA</Property> ... </UserStoreManager>
Go to
$PRODUCT_HOME/repository/conf/tenant-mgt.xml
file and comment out the 'CommonHybridLDAPTenantManager', which is used by default and uncomment JDBCTenantManager. For example:Code Block language html/xml <TenantManager class="org.wso2.carbon.user.core.tenant.JDBCTenantManager"></TenantManager>