To set up a new MySQL user into your Jumpline account you will need to ssh into your server and run the following commands.
/etc/rc.d/init.d/mysqld stop
mysqld_safe --skip-grant-tables &
mysql> mysql
mysql> use mysql;
mysql> delete from user where user='username' and host='localhost';
Query OK, 1 row affected (0.00 sec)
mysql> INSERT INTO user VALUES('localhost','username',PASSWORD('password'),
'Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y','Y');
Query OK, 1 row affected, 5 warnings (0.00 sec)
FLUSH PRIVILEGES;
quit
/etc/rc.d/init.d/mysqld stop
/etc/rc.d/init.d/mysqld start

The article has been updated successfully.