使用 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'] 提供的服务器。

用户可以在这两个服务器之间进行切换。

更新于: 06-04-2020

225 次浏览

开启您的职业生涯

参加课程,获得认证

开始
广告