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
85
Accessing RDS from local
thanhgit
May 03, 2022
Tweet
Share
More Decks by thanhgit
See All by thanhgit
Developer portal
thanhgit
0
72
AWS ECS fargate
thanhgit
0
110
AWS Lambda function
thanhgit
0
150
CICD from on-premise to cloud
thanhgit
0
150
Infra as Code (terraform)
thanhgit
0
110
Pritunl VPN Server
thanhgit
0
130
AuthN & AuthZ with distributed systems
thanhgit
0
150
Permission design
thanhgit
0
73
Blockchain - góc nhìn về kĩ thuật và ứng dụng
thanhgit
0
250
Other Decks in Technology
See All in Technology
非root化Androidスマホでも動く仮想マシンアプリを試してみた
arkw
0
120
MCPを理解する
yudai00
14
9.9k
今日からはじめるプラットフォームエンジニアリング
jacopen
8
2k
AIによるコードレビューで開発体験を向上させよう!
moongift
PRO
0
410
続・やっぱり余白が大切だった話
kakehashi
PRO
2
290
Асинхронная коммуникация в Go: от понятного к душному. Дима Некрасов, Otello, 2ГИС
lamodatech
0
2k
Compose におけるパスワード自動入力とパスワード保存
tonionagauzzi
0
210
クラウドネイティブ環境の脅威モデリング
kyohmizu
1
390
MCPが変えるAIとの協働
knishioka
1
140
製造業向けIoTソリューション提案資料.pdf
haruki_uiru
0
220
Why Platform Engineering? - マルチプロダクト・少人数 SRE の壁を越える挑戦 -
nulabinc
PRO
2
290
30代からでも遅くない! 内製開発の世界に飛び込み、最前線で戦うLLMアプリ開発エンジニアになろう
minorun365
PRO
16
5.1k
Featured
See All Featured
Fashionably flexible responsive web design (full day workshop)
malarkey
407
66k
Music & Morning Musume
bryan
47
6.5k
Gamification - CAS2011
davidbonilla
81
5.3k
How to Think Like a Performance Engineer
csswizardry
23
1.6k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
233
17k
Bash Introduction
62gerente
612
210k
Become a Pro
speakerdeck
PRO
28
5.3k
GraphQLの誤解/rethinking-graphql
sonatard
71
10k
Fireside Chat
paigeccino
37
3.4k
Art, The Web, and Tiny UX
lynnandtonic
298
20k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
30
2k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
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: ?