使用本地 phpMyAdmin 客户端访问远程服务器
如果不直接访问服务器,管理远程 MySQL 数据库可能是一项挑战。但是,使用本地 phpMyAdmin 客户端,可以轻松远程管理这些服务器。
配置
要将 phpMyAdmin 连接到远程服务器,请将以下行添加到/etc/phpmyadmin/config.inc.php 的底部文件:
$i++; $cfg['Servers'][$i]['host'] = 'HostName:port'; // Hostname and port (if non-default) $cfg['Servers'][$i]['user'] = 'userName'; // Remote server username $cfg['Servers'][$i]['password'] = 'Password'; // Remote server password $cfg['Servers'][$i]['auth_type'] = 'config'; // Keep as 'config'
使用
配置后,您应该在 phpMyAdmin 中看到一个“当前服务器”下拉列表,其中包含本地(127.0.0.1)服务器和您添加的远程服务器。只需根据需要在服务器之间切换即可。
其他资源
有关更详细的说明,请参阅此资源:http://sforsuresh.in/access-remote- mysql-server-using-local-phpmyadmin/
以上是如何使用本地 phpMyAdmin 客户端管理远程 MySQL 数据库?的详细内容。更多信息请关注PHP中文网其他相关文章!