Getting Started → Installing Servers and Agents → Database Installation → Installing MySQL
Before installing the Serena Release Automation server, install MySQL. If you are evaluating Serena Release Automation, you can install the database on the same machine where the Serena Release Automation server will be installed.
When you install Serena Release Automation, you will need the MySQL connection information, and a user account with table creation privileges.
To install the MySQL database:
CREATE DATABASE serena_ra;
GRANT ALL ON serena_ra.* TO 'serena_ra'@'%'
IDENTIFIED BY 'password' WITH GRANT OPTION;
The JDBC jar file is included among the MySQL installation files. The driver is unique to the edition you are using.
Select the MySQL database option in the installer.
The default value is com.mysql.Driver.
jdbc:mysql[DB_URL]:[DB_PORT]:[DB_NAME]
For example:
jdbc:mysql://localhost:3306/serena_ra
Copyright © 2012–2013 Serena Software, Inc. All rights reserved.