2

PHP MyAdmin 経由で Amazon RDS にアクセスする必要があります。初心者なので本当に困っています。同様の問題を含む投稿を見つけました: Using PHPMyAdmin to manage Amazon RDS pointing to: http://blog.benkuhl.com/2010/12/how-to-remotely-manage-an-amazon-rds-instance-with -phpmyadmin/

そこにある答えは、完全な config.inc.php ファイルを台無しにしました。ローカルホストに再度アクセスするには、PHPMyAdmin を含む XAMPP を再インストールする必要がありました。

続行するための最良の方法を誰かに教えてもらえますか? ローカルの PHPMyAdmin から Amazon RDS にアクセスできるというのは正しいですか?

ありがとうございました

編集:ファイル内のコードを開始する必要があることを確認しました

$i++;

誰かがコードが最終的にどのように見えるべきか知っていますか?

追加:

$cfg['Servers'][$i]['auth_type'] = 'HTTP';
    $cfg['Servers'][$i]['hide_db'] = '(mysql|information_schema|phpmyadmin)';
    /* Server parameters */
    $cfg['Servers'][$i]['host'] = 'xxxxx.l2kj35ncj3.us-east-1.rds.amazonaws.com';

私にはうまくいきませんでした。

編集2:「/Applications/XAMPP/xamppfiles/phpmyadmin」の下にファイルがあるのは正しいですか?

私の config.inc.php ファイルは、チュートリアルのものとは異なって見えます。

<?php

/* $Id: config.sample.inc.php,v 2.1.2.2 2006/08/28 08:14:14 nijel Exp $ */
// vim: expandtab sw=4 ts=4 sts=4:

/**
 * phpMyAdmin sample configuration, you can use it as base for 
 * manual configuration. For easier setup you can use scripts/setup.php
 *
 * All directives are explained in Documentation.html and on phpMyAdmin 
 * wiki <http://wiki.cihar.com>.
 */

/* 
 * This is needed for cookie based authentication to encrypt password in 
 * cookie
 */
$cfg['blowfish_secret'] = ''; /* YOU MUST FILL IN THIS FOR COOKIE AUTH! */

/* 
 * Servers configuration
 */
$i = 0;

/* 
 * First server
 */
$i++;
/* Authentication type */
$cfg['Servers'][$i]['auth_type'] = 'config';
/* Server parameters */
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['password'] = '';
$cfg['Servers'][$i]['connect_type'] = 'socket'; 
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['AllowNoPassword'] = true;
/* Select mysqli if your server has it */
$cfg['Servers'][$i]['extension'] = 'mysql';
/* User for advanced features */
//$cfg['Servers'][$i]['controluser'] = 'pmauser';
//$cfg['Servers'][$i]['controlpass'] = 'pmapass';
/* Advanced phpMyAdmin features */
//$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
//$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';
//$cfg['Servers'][$i]['relation'] = 'pma_relation';
//$cfg['Servers'][$i]['table_info'] = 'pma_table_info';
//$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';
//$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';
//$cfg['Servers'][$i]['column_info'] = 'pma_column_info';
//$cfg['Servers'][$i]['history'] = 'pma_history';

/* 
 * End of servers configuration
 */

/*
 * Directories for saving/loading files from server
 */
$cfg['UploadDir'] = '';
$cfg['SaveDir'] = '';

?>
4

1 に答える 1

0

RDS インスタンスが属する DB セキュリティ グループにローカル IP アドレスがない可能性があります。

AWS マネジメント コンソールの RDS セクションに移動します。

ページの左側で、[DB インスタンス] をクリックします。アクセスしようとしているインスタンスを選択し、それが属するセキュリティ グループをメモします。

次に、ページの左側で、[DB セキュリティ グループ] をクリックします。メモしたセキュリティ グループを選択します。ページの一番下に、CIDR と書かれたフォーム フィールドがあるはずです。その下に、ローカル マシンの CIDR の最適な見積もりが表示されます。それをコピーして CIDR ボックスに貼り付け、[追加] ボタンをクリックします。

次に、ローカル マシンからデータベースにアクセスしてみます。

于 2013-06-07T01:18:35.880 に答える