Edit the DM_DS , MobileIOSDM_DS , MobileAndroidDM_DS and MobileWindowsDM_DS datasources in the cdm-datasources.xml file by replacing the url , username , password and driverClassName settings with your custom values. Expand |
---|
| Code Block |
---|
| <datasource>
<name>DM_DS</name>
<description>The datasource used for EMM</description>
<jndiConfig>
<name>jdbc/DM_DS</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>jdbc:mysql://localhost:3306/WSO2DM_DB</url>
<username>wso2carbon</username>
<password>wso2carbon</password>
<driverClassName>com.mysql.jdbc.Driver</driverClassName>
<maxActive>50</maxActive>
<maxWait>60000</maxWait>
<testOnBorrow>true</testOnBorrow>
<validationQuery>SELECT 1</validationQuery>
<validationInterval>30000</validationInterval>
</configuration>
</definition>
</datasource> |
|
Expand |
---|
title | MobileIOSDM_DS datasource |
---|
| This datasource is specifically used to manage mobile devices on the iOS platform. Code Block |
---|
| <datasource>
<name>MobileIOSDM_DS</name>
<description>The datasource used for EMM Mobile iOS Device Management</description>
<jndiConfig>
<name>jdbc/MobileIOSDM_DS</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>jdbc:mysql://localhost:3306/WSO2MobileIOS_DB</url>
<username>wso2carbon</username>
<password>wso2carbon</password>
<driverClassName>com.mysql.jdbc.Driver</driverClassName>
<maxActive>50</maxActive>
<maxWait>60000</maxWait>
<testOnBorrow>true</testOnBorrow>
<validationQuery>SELECT 1</validationQuery>
<validationInterval>30000</validationInterval>
</configuration>
</definition>
</datasource> |
|
Expand |
---|
title | MobileAndroidDM_DS datasource |
---|
| This datasource is specifically used to manage mobile devices on the Android platform. Code Block |
---|
| <datasource>
<name>MobileAndroidDM_DS</name>
<description>The datasource used for EMM Mobile Android Device Management</description>
<jndiConfig>
<name>jdbc/MobileAndroidDM_DS</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>jdbc:mysql://localhost:3306/WSO2MobileAndroid_DB</url>
<username>wso2carbon</username>
<password>wso2carbon</password>
<driverClassName>com.mysql.jdbc.Driver</driverClassName>
<maxActive>50</maxActive>
<maxWait>60000</maxWait>
<testOnBorrow>true</testOnBorrow>
<validationQuery>SELECT 1</validationQuery>
<validationInterval>30000</validationInterval>
</configuration>
</definition>
</datasource> |
|
Expand |
---|
title | MobileWindowsDM_DS datasource |
---|
| This datasource is specifically used to manage mobile devices on the Windows platform. Code Block |
---|
| <datasource>
<name>MobileWindowsDM_DS</name>
<description>The datasource used for EMM Mobile Windows Device Management</description>
<jndiConfig>
<name>jdbc/MobileWindowsDM_DS</name>
</jndiConfig>
<definition type="RDBMS">
<configuration>
<url>jdbc:mysql://localhost:3306/WSO2MobileWindows_DB</url>
<username>wso2carbon</username>
<password>wso2carbon</password>
<driverClassName>com.mysql.jdbc.Driver</driverClassName>
<maxActive>50</maxActive>
<maxWait>60000</maxWait>
<testOnBorrow>true</testOnBorrow>
<validationQuery>SELECT 1</validationQuery>
<validationInterval>30000</validationInterval>
</configuration>
</definition>
</datasource> |
|
|