Skip to content

Installation: Create the production database

randikathryn edited this page Feb 23, 2014 · 14 revisions

Notes

The production database stores user data and other information related to HydraDAM.

Steps

Create the MySQL databases for your production server.

  1. Log in to MySQL by entering the command mysql -u root -p in the terminal window.

  2. Enter your MySQL password, which you set when you configured the MySQL server.

  3. Create the production database using the commands below.

    CREATE DATABASE hd_production;
    GRANT ALL ON hd_production.* TO hdProd@localhost IDENTIFIED BY 'hdProd';
    exit

    The final output should look like this:
    mysql> `CREATE DATABASE hd_production;
    Query OK, 1 row affected (0.00 sec)
    mysql> GRANT ALL ON hd_production.* TO hdProd@localhost IDENTIFIED BY 'hdProd';
    Query OK, 0 rows affected (0.00 sec)
    mysql> exit
    Bye

Verification Steps

The complete functionality of this step cannot be tested until you have completed steps 16 and 17. If you run into issues, please consult the Troubleshooting Guide.

Next Step

Proceed to Create and Configure the YML Files or return to the Overview page.

Clone this wiki locally