使用本地 phpMyAdmin 访问远程服务器
管理远程 MySQL 服务器可能具有挑战性,特别是如果您只有本地 phpMyAdmin 客户端。幸运的是,通过一些配置调整,可以使用本地 phpMyAdmin 安装连接和控制远程服务器。
分步解决方案
在底部在该文件的文件中,添加以下代码:
$i++; $cfg['Servers'][$i]['host'] = 'HostName:port'; // Replace with remote hostname and optional port $cfg['Servers'][$i]['user'] = 'userName'; // Remote server username $cfg['Servers'][$i]['password'] = 'Password'; // Remote server password $cfg['Servers'][$i]['auth_type'] = 'config';
其他详情
有关更多详细信息,请参阅以下资源:
以上是如何使用本地phpMyAdmin访问远程MySQL服务器?的详细内容。更多信息请关注PHP中文网其他相关文章!