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