Mysql
 sql >> Database >  >> RDS >> Mysql

Come accedere al server remoto con il client phpMyAdmin locale?

Basta aggiungere le righe sottostanti al tuo /etc/phpmyadmin/config.inc.php file in basso:

$i++;
$cfg['Servers'][$i]['host'] = 'HostName:port'; //provide hostname and port if other than default
$cfg['Servers'][$i]['user'] = 'userName';   //user name for your remote server
$cfg['Servers'][$i]['password'] = 'Password';  //password
$cfg['Servers'][$i]['auth_type'] = 'config';       // keep it as config

Otterrai Current Server: a discesa con entrambi 127.0.0.1 e uno quello che hai fornito con $cfg['Servers'][$i]['host'] può passare da un server all'altro.

Maggiori dettagli:http://sforsuresh.in/access-remote -mysql-server-using-local-phpmyadmin/