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';

Comments

Popular posts from this blog

MySQL event scheduler and how to create MySQL events to automate database tasks

GIT create a new repository on the command line

How to send Send Email with attached CSV file in codeigniter