Installation and Configuration → Installing Servers and Agents → Server Installation → Database Installation → Installing MySQL
Before installing the Deployment Automation server, install MySQL. If you are evaluating Deployment Automation, you can install the database on the same machine where the Deployment Automation server will be installed.
When you install Deployment 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://serverName:3306/serena_ra
Copyright © 2011–2015 Serena Software, Inc. All rights reserved.