aclDatabase.xml
This configuration file stores configuration information for the ACL Analytics Exchange database. The file is encrypted when the ACL Analytics Exchange Geronimo service starts. For information on changing settings in this file, see Modifying aclDatabase.xml.
Because the configuration file is an XML file, you must use special syntax if the passwords include characters that cannot be included inside an XML tag (<,>,&,”, or ’). In order for the AX Server application to read passwords that include these characters, you must wrap the password in a CDATA tag. For example, the following standard syntax for specifying “pa&&word” would not be read correctly by the application:
<entry key="password">pa&&word</entry>
In order to specify the password in a way the application can read it, you need to enter the following:
<entry key="password"><![CDATA[pa&&word]]></entry>
Property | Description |
---|---|
username |
The username required to connect to the ACL Analytics Exchange database. |
password |
The password required to connect to the ACL Analytics Exchange database. |
host |
The hostname or IP address of the server where the ACL Analytics Exchange database is located. |
port |
The port used to connect to the ACL Analytics Exchange database server. For PostgreSQL the default value is 5432. For Oracle the default value is 1521 for non-SSL or 2482 for SSL. |
database |
The name of the ACL Analytics Exchange database. |
driver |
The database driver used to connect to the database. For PostgreSQL the value required is: jdbc:postgresql. For Oracle the value required is: jdbc:oracle |
ssl |
Specifies whether or not SSL should be used to secure communications with the ACL Analytics Exchange database. The permitted values are “true” (use SSL) or “false” (do not use SSL). Note: If you update the SSL setting in this property file, you also need to update the AclAuditExchangeDbPool database pool in Geronimo application server to match your SSL configuration. |