使用本機 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中文網其他相關文章!