非AWS環境のRedashからRDSに接続メモ
AWSではないところにあるRedashからRDSのデータソースにアクセスする場合は少し面倒なのでメモで残しておく
- AWSではないサーバ上でRedashが動いている
- RDSはVPC上にある
RDSのパブリックアクセス許可
まずインターネット越しにVPC内のRDSに接続する許可をする。パブリックアクセシビリティ「はい」を選択
セキュリティグループでDBのIPを空ける
RDSにDBユーザを作成
- rootでログイン
$ mysql -hxxxx-db-all-1-cluster.cluster-xxxxxxxxxxxx.ap-northeast-1.rds.amazonaws.com -uroot -pPassword
- ユーザ作成。「*」ではなく「
%
」で指定
MySQL [(none)]> GRANT ALL ON `%`.* TO <user>@'<address>' IDENTIFIED BY 'Password';
Query OK, 0 rows affected, 1 warning (0.06 sec)
Redashでデータソース登録
- Test ConnectionでSuccessとなること
$ mysql -hxxxx-db-all-1-cluster.cluster-xxxxxxxxxxxx.ap-northeast-1.rds.amazonaws.com -uroot -pPassword
%
」で指定MySQL [(none)]> GRANT ALL ON `%`.* TO <user>@'<address>' IDENTIFIED BY 'Password';
Query OK, 0 rows affected, 1 warning (0.06 sec)
- Test ConnectionでSuccessとなること
Author And Source
この問題について(非AWS環境のRedashからRDSに接続メモ), 我々は、より多くの情報をここで見つけました https://qiita.com/ezaqiita/items/5fcd195ede2edf1c2f7b著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .