The <CARBON_HOME>/repository/conf/user-mgt.xml file's main configuration section indicates has the following information.:
Code Block | ||||
---|---|---|---|---|
| ||||
<Configuration> <AdminRole>admin</AdminRole> <AdminUser> <UserName>admin</UserName> <Password>admin</Password> </AdminUser> <EveryOneRoleName>everyone</EveryOneRoleName> <!-- By default users in this role sees the registry root --> <Property name="dataSource">jdbc/WSO2CarbonDB</Property> <Property name="MultiTenantRealmConfigBuilder">org.wso2.carbon.user.core.config.multitenancy.SimpleRealmConfigBuilder<SimpleRealmConfigBuilder </Property> </Configuration> |
The
...
main elements of the Realm Configuration are as follows.
Element Name | Description |
---|---|
<AdminRole> | Admin's role name. |
<AdminUser>\<UserName> | Admin user's username. the admin user must be presentexist in the user store. Otherwise the system will not startupwon't start. |
<AdminUser>\<Password> | Admin user's password. -only, this element and its value are ignored. |
<EveryOneRoleName> | Everyone role name. |
The
...
main properties of the
...
user Realm Configuration
...
title | Tip |
---|
...
can be explained as follows. It mainly contains details for the database connection.
Property Name | Description |
---|---|
dataSource | Data sources are configured in the <PRODUCT_HOME>/repository/conf/datasources/master-datasources.xml |
...
Property Name
...
Description
dataSource
...
The database configuration is defined in the master-datasources.xml
...
hidden | true |
---|
...
file. This property indicates the relevant data source configuration for the User Management Database. | |
MultiTenantRealmConfigBuilder | Tenant Manager specific realm config parameter. Can be used to build different types of realms for the tenant. |