MySQL Add Users
Connect to the database server
testbox:~# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.0.32-Debian_7etch6-log Debian etch distribution
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
Create a superuser account
mysql> GRANT ALL PRIVILEGES ON *.* TO tarzan IDENTIFIED BY 'IswingOnVines' with GRANT OPTION;
Query OK, 0 rows affected (0.00 sec)
Quit from MySQL
mysql> \quit
<<MySQL Installation
MySQL Add Database >>