MySQL Configuration

Procedure

  1. Increase maximum database connections to 200. Edit the [mysqld] section in <mysql-installdir>/my.ini (Windows) or /etc/my.cnf (UNIX/Linux) as follows:
    max_connections=200
     
    The value should at least equal the total of your Max Console Procs and Run Queue Size system settings (in the Management Console's Administration → System page).
  2. Confirm that your MySQL instance is using the InnoDB storage engine. The Rational Build Forge database uses foreign key constraints. The MySQL MylSAM storage engine does not check foreign key constraints. If MylSAM is used, problems can occur when new database objects are created, especially through the API.

Feedback