Before configuring the MySQL data source, you must have
already created the database on MySQL.
Open the [appserver root]/server/lc_mysql_cl/deploy/adobe-ds.xml
file in a text editor and locate this line for both IDP_DS and EDC_DS:
<connection-url>jdbc:mysql://localhost:3306/adobe</connection-url>
<user-name>adobe</user-name>
<password>adobe</password>
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.
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.
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 LiveCycle 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.
Save and close the file.
|
|
|