Create The Database and Users

CREATE AND PREPARE THE ATTACHMAX DATABASE
-----------------------------------------
Before you proceed to the next installation step you should know:
- "username" - the username for connecting to the database
- "password" - the password for the Database
- "databasename" - the name of the database

1) You can either create this through phpmyadmin or directly via ssh into mysql

Via Phpmyadmin

1) On the Phpmyadmin homepage where it says "Create new database"
Enter any name for the database and then click Create.

2) You will be taken to a new page that gives you a message
Database "name you chose" has been created.

3) Go back to your Homepage and click Privileges

4) Click Enter Username link

5) You will be taken to a new Page, where you can enter
Username: enter a username here
Host: Usually localhost
Password: The password for the user

Down Below you will see some radio options,


Below that Select the adequate Privileges and your Done

------------------------------------------------------------
Faster Alternative approach for ssh users.
Enter these commands
1) mysql -p (which will take you into mysql shell)
2) Create database databasename
2) grant all privileges on databasename.* to user@localhost identified by 'password';
i.e grant all privileges on am_test.* to am_user@localhost identified by 'zoomzoom';