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
90
Accessing RDS from local
thanhgit
May 03, 2022
Tweet
Share
More Decks by thanhgit
See All by thanhgit
Developer portal
thanhgit
0
76
AWS ECS fargate
thanhgit
0
120
AWS Lambda function
thanhgit
0
170
CICD from on-premise to cloud
thanhgit
0
160
Infra as Code (terraform)
thanhgit
0
110
Pritunl VPN Server
thanhgit
0
140
AuthN & AuthZ with distributed systems
thanhgit
0
160
Permission design
thanhgit
0
75
Blockchain - góc nhìn về kĩ thuật và ứng dụng
thanhgit
0
260
Other Decks in Technology
See All in Technology
【あのMCPって、どんな処理してるの?】 AWS CDKでの開発で便利なAWS MCP Servers特集
yoshimi0227
4
290
united airlines ™®️ USA Contact Numbers: Complete 2025 Support Guide
flyunitedhelp
1
440
Zero Data Loss Autonomous Recovery Service サービス概要
oracle4engineer
PRO
2
7.8k
Sansanのデータプロダクトマネジメントのアプローチ
sansantech
PRO
0
200
DatabricksにOLTPデータベース『Lakebase』がやってきた!
inoutk
0
140
衛星運用をソフトウェアエンジニアに依頼したときにできあがるもの
sankichi92
1
160
AWS CDK 入門ガイド これだけは知っておきたいヒント集
anank
3
290
CDK Vibe Coding Fes
tomoki10
0
220
2025-07-06 QGIS初級ハンズオン「はじめてのQGIS」
kou_kita
0
180
[SRE NEXT] ARR150億円_エンジニア140名_27チーム_17プロダクトから始めるSLO.pdf
satos
2
620
20250707-AI活用の個人差を埋めるチームづくり
shnjtk
6
4k
〜『世界中の家族のこころのインフラ』を目指して”次の10年”へ〜 SREが導いたグローバルサービスの信頼性向上戦略とその舞台裏 / Towards the Next Decade: Enhancing Global Service Reliability
kohbis
2
360
Featured
See All Featured
ReactJS: Keep Simple. Everything can be a component!
pedronauck
667
120k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.9k
Git: the NoSQL Database
bkeepers
PRO
430
65k
The Language of Interfaces
destraynor
158
25k
Designing for Performance
lara
610
69k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
367
26k
Visualization
eitanlees
146
16k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Building Flexible Design Systems
yeseniaperezcruz
328
39k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Templates, Plugins, & Blocks: Oh My! Creating the theme that thinks of everything
marktimemedia
31
2.4k
YesSQL, Process and Tooling at Scale
rocio
173
14k
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: ?