Connect more than one instance in phpmyadmin
Go to phpmyadmin GUI
Go to previleges -> editprevileges -> Change Password type password -> retypepassword
After
Go to phpmyadmin folder chnage file config.inc.php
$cfg['Servers'][$i]['host'] = 'hostip';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['compress'] = TRUE;
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'admin';
$cfg['Servers'][$i]['password'] = 'password';
Go to previleges -> editprevileges -> Change Password type password -> retypepassword
After
Go to phpmyadmin folder chnage file config.inc.php
$cfg['Servers'][$i]['host'] = 'hostip';
$cfg['Servers'][$i]['port'] = '3306';
$cfg['Servers'][$i]['socket'] = '';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['compress'] = TRUE;
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['user'] = 'admin';
$cfg['Servers'][$i]['password'] = 'password';
Comments
Post a Comment