Setting Properties for the Central Logger

On the host that will run the management portal, edit the asg_portal.properties file.

Procedure

  1. Edit the asg-portal.properties file to specify database properties for the Central Logger:
    • Identify the Central Logger database. The following example identifies a MySQL database:

      # Central Logger database

      asg.portal.engine.cl.database.driver=com.mysql.jdbc.Driver
      asg.portal.engine.cl.database.url=jdbc:mysql://localhost:3306/asgstat?autoReconnect=true
    • Configure the Central Logger database connection pool. The following example shows a sample configuration for the database connection pool:
      # Central Logger database connection pool
      asg.portal.engine.cl.db.connectionPool.initialConnections=3
      asg.portal.engine.cl.db.connectionPool.maxConnections=10
      asg.portal.engine.cl.db.connectionPool.waitIfBusy=true
    • Specify the database user name and password, as shown in the following example:
      # Central Logger database username and password
      asg.portal.engine.cl.db.username=asguser
      asg.portal.engine.cl.db.password=asgpass
  2. Edit the asg-portal.properties file to specify the quota checking interval. The default usage check interval is 10 minutes. The following example sets the quota checking interval to 1 minute:
    # Quota usage checking interval in minutes
    asg.portal.engine.quotaUsageCheckInterval=1