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
87
Accessing RDS from local
thanhgit
May 03, 2022
Tweet
Share
More Decks by thanhgit
See All by thanhgit
Developer portal
thanhgit
0
75
AWS ECS fargate
thanhgit
0
120
AWS Lambda function
thanhgit
0
160
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
150
Permission design
thanhgit
0
74
Blockchain - góc nhìn về kĩ thuật và ứng dụng
thanhgit
0
250
Other Decks in Technology
See All in Technology
AIエージェントのフレームワークを見るときの個人的注目ポイント
os1ma
1
260
20250612_GitHubを使いこなすためにソニーの開発現場が取り組んでいるプラクティス.pdf
osakiy8
1
330
Cursor Meetup Tokyo
iamshunta
5
1.5k
Javaアプリケーションの配布とパッケージング / Distribution and packaging of Java applications
hogelog
2
530
AI とペアプロしてわかった 3 つのヒューマンエラー
takahiroikegawa
0
470
CSSの最新トレンド Ver.2025
tonkotsuboy_com
11
4k
Go Connectへの想い
chiroruxx
0
150
Contract One Engineering Unit 紹介資料
sansan33
PRO
0
6.2k
Monorepo Error Management: Automated Runbooks and Team-Targeted Alert Distribution
biwashi
1
110
Introduction to Bill One Development Engineer
sansan33
PRO
0
240
TypeScript をより型安全に扱うプラクティス #TSKaigi #TSKaigi2025_kataritai
bengo4com
0
2.1k
やさしい認証認可
minorun365
PRO
27
11k
Featured
See All Featured
Being A Developer After 40
akosma
90
590k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Music & Morning Musume
bryan
47
6.6k
The Pragmatic Product Professional
lauravandoore
35
6.7k
Done Done
chrislema
184
16k
StorybookのUI Testing Handbookを読んだ
zakiyama
30
5.8k
Embracing the Ebb and Flow
colly
85
4.7k
How STYLIGHT went responsive
nonsquared
100
5.6k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
34
3k
Six Lessons from altMBA
skipperchong
28
3.8k
YesSQL, Process and Tooling at Scale
rocio
172
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: ?