Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Accessing RDS from local
Search
thanhgit
May 03, 2022
Technology
0
100
Accessing RDS from local
thanhgit
May 03, 2022
Tweet
Share
More Decks by thanhgit
See All by thanhgit
Developer portal
thanhgit
0
96
AWS ECS fargate
thanhgit
0
150
AWS Lambda function
thanhgit
0
190
CICD from on-premise to cloud
thanhgit
0
180
Infra as Code (terraform)
thanhgit
0
120
Pritunl VPN Server
thanhgit
0
160
AuthN & AuthZ with distributed systems
thanhgit
0
180
Permission design
thanhgit
0
84
Blockchain - góc nhìn về kĩ thuật và ứng dụng
thanhgit
0
270
Other Decks in Technology
See All in Technology
AIと新時代を切り拓く。これからのSREとメルカリIBISの挑戦
0gm
1
2.8k
Bill One 開発エンジニア 紹介資料
sansan33
PRO
5
17k
OCI Database Management サービス詳細
oracle4engineer
PRO
1
7.4k
顧客との商談議事録をみんなで読んで顧客解像度を上げよう
shibayu36
0
260
仕様書駆動AI開発の実践: Issue→Skill→PRテンプレで 再現性を作る
knishioka
2
680
OWASP Top 10:2025 リリースと 少しの日本語化にまつわる裏話
okdt
PRO
3
820
配列に見る bash と zsh の違い
kazzpapa3
3
160
All About Sansan – for New Global Engineers
sansan33
PRO
1
1.4k
茨城の思い出を振り返る ~CDKのセキュリティを添えて~ / 20260201 Mitsutoshi Matsuo
shift_evolve
PRO
1
350
Introduction to Sansan for Engineers / エンジニア向け会社紹介
sansan33
PRO
6
68k
Webhook best practices for rock solid and resilient deployments
glaforge
2
300
Amazon Bedrock Knowledge Basesチャンキング解説!
aoinoguchi
0
150
Featured
See All Featured
From Legacy to Launchpad: Building Startup-Ready Communities
dugsong
0
140
Information Architects: The Missing Link in Design Systems
soysaucechin
0
780
Building Applications with DynamoDB
mza
96
6.9k
HDC tutorial
michielstock
1
390
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
1
100
The Art of Programming - Codeland 2020
erikaheidi
57
14k
How People are Using Generative and Agentic AI to Supercharge Their Products, Projects, Services and Value Streams Today
helenjbeal
1
130
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.6k
Technical Leadership for Architectural Decision Making
baasie
2
250
Jess Joyce - The Pitfalls of Following Frameworks
techseoconnect
PRO
1
66
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
52
New Earth Scene 8
popppiees
1
1.5k
Transcript
Cách truy cập RDS từ local By Thanh Nguyen
Điều kiện - Có thể truy cập VPN công ty
- Cài đặt một trình quản lý cơ sở dữ liệu. Ví dụ: + Mac và Windows: Sequel Pro, ... + Linux: Dbeaver, … - Workflow: Port forwarding từ local <-> bastion host <-> RDS in AWS + Để hiểu thì xem tutorial này: link
Port forwarding ssh -i ~/.ssh/bastion_key.pem -NfC -L 7011:rds-name.cluster-xxx.region.rds.amazonaws.com:3306 ec2-user@IP-bastion-server
Truy cập database với terminal mysql -h 127.0.0.1 -u db-user
-D db-name -P 7011 -p
Tạo một kết nối trong trình quản lý DB Chú
ý: - server host: ? - port: ? - User/password: ?