使用 phpMyAdmin 连接至外部服务器
以下代码行可以添加到 /etc/phpmyadmin/config.inc.php 文件底部 −
$i++; $cfg['Servers'][$i]['host'] = 'HostName:port'; // hostname and port are provided if they are not default values $cfg['Servers'][$i]['user'] = 'userName'; //user name for the remote server $cfg['Servers'][$i]['password'] = 'Password'; //the password $cfg['Servers'][$i]['auth_type'] = 'config';
它将显示“当前服务器:”,下拉菜单中既包括“127.0.0.1”,也包括 $cfg['Servers'][$i]['host'] 提供的服务器。
用户可以在这两个服务器之间进行切换。
广告