3.5.3.1 Configuring the data source files

Before configuring the MySQL data source, you must have already created the database on MySQL.

  1. Open the [appserver root] /domain/configuration/domain_mysql.xml file in a text editor and locate this line for IDP_DS, EDC_DS, and DefaultDS:

    <connection-url>jdbc:mysql://localhost:3306/adobe</connection-url> 
    <user-name>adobe</user-name> 
    <password>adobe</password>
  2. Replace the following text in the file with values that are specific to your database:

    • localhost: The name, IP address, or fully-qualified path of the computer that hosts the database. The default is localhost .

    • 3306: The port used to access the database. The default port is 3306 .

    • adobe: The name of the database that stores the data. Replace the default value, adobe , with your database name.

  3. In the lines that follow the <connection-url> settings, locate the user-name and password settings and replace the default values with the user name and password that the application server uses to access your database.

  4. Ensure that the minimum and maximum values for the data source connections are set as follows:

    • For IDP_DS:

      <min-pool-size>1</min-pool-size> 
      <max-pool-size>30</max-pool-size>
    • For EDC_DS:

      <min-pool-size>1</min-pool-size> 
      <max-pool-size>20</max-pool-size>
      Note: If your forms server handles heavy load, increase the maximum number of JDBC connections to ensure that all jobs are processed. In such cases, increase <max-pool-size> to 50 or more for both IDP_DS and EDC_DS.
  5. Save and close the file.

// Ethnio survey code removed