BuildForge Help

Database Objects for MySQL

  1. Create an empty database named build.
  2. Create a user associated with it (user name build, password build).
You could use the following commands to create the database build and create a user build@localhost with the password ("identified by") build:
 mysql -u root
 mysql> create database build;
 mysql> grant all on build.* to build@localhost
        ->     identified by "build";