ローカル phpMyAdmin クライアントを使用したリモート サーバーへのアクセス
サーバーに直接アクセスしないと、リモート MySQL データベースの管理が困難になる場合があります。ただし、ローカルの phpMyAdmin クライアントを使用すると、これらのサーバーをリモートで簡単に管理できます。
Configuration
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'
使用法
設定が完了すると、ローカル (127.0.0.1) サーバーと追加したリモートサーバー。必要に応じてサーバーを切り替えるだけです。
追加リソース
詳細な手順については、次のリソースを参照してください: http://sforsuresh.in/access-remote- mysql-server-using-local-phpmyadmin/
以上がローカルの phpMyAdmin クライアントを使用してリモートの MySQL データベースを管理するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。