Took some twiddling but here's what you do:
open your config.inc.php file
Change your line that says
$cfg['Servers'][$i]['host'] = 'localhost';
to
$cfg['Servers'][$i]['host'] = '127.0.0.1';
Also change your port to whatever you configured it to ie:
$cfg['Servers'][$i]['port'] = '';
to
$cfg['Servers'][$i]['port'] = '3306';
Change your password to whatever you configured it as
from
$cfg['Servers'][$i]['password'] = '';
to
$cfg['Servers'][$i]['password'] = 'password';
Voila! you are in.

