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
110
Accessing RDS from local
thanhgit
May 03, 2022
Tweet
Share
More Decks by thanhgit
See All by thanhgit
Developer portal
thanhgit
0
100
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
170
AuthN & AuthZ with distributed systems
thanhgit
0
180
Permission design
thanhgit
0
87
Blockchain - góc nhìn về kĩ thuật và ứng dụng
thanhgit
0
280
Other Decks in Technology
See All in Technology
DX Improvement at Scale
ntk1000
3
380
ビズリーチにおける検索・推薦の取り組み / DEIM2026
visional_engineering_and_design
1
120
マネージャー版 "提案のレベル" を上げる
konifar
21
14k
SaaSからAIへの過渡期の中で現在、組織内で起こっている変化 / SaaS to AI Paradigm Shift
aeonpeople
0
100
[AEON TECH HUB #24] お客様の長期的興味の理解に向けて
alpicola
0
120
JAWS Days 2026 楽しく学ぼう! 認証認可 入門/20260307-jaws-days-novice-lane-auth
opelab
9
1.5k
モブプログラミング再入門 ー 基本から見直す、AI時代のチーム開発の選択肢 ー / A Re-introduction of Mob Programming
takaking22
5
750
楽しく学ぼう!コミュニティ入門 AWSと人が つむいできたストーリー
hiroramos4
PRO
1
160
【SLO】"多様な期待値" と向き合ってみた
z63d
2
310
[JAWS DAYS 2026]私の AWS DevOps Agent 推しポイント
furuton
0
110
クラウド時代における一時権限取得
krrrr38
1
170
プロジェクトマネジメントをチームに宿す -ゼロからはじめるチームプロジェクトマネジメントは活動1年未満のチームの教科書です- / 20260304 Shigeki Morizane
shift_evolve
PRO
1
140
Featured
See All Featured
Unlocking the hidden potential of vector embeddings in international SEO
frankvandijk
0
190
Pawsitive SEO: Lessons from My Dog (and Many Mistakes) on Thriving as a Consultant in the Age of AI
davidcarrasco
0
80
Build your cross-platform service in a week with App Engine
jlugia
234
18k
Building Better People: How to give real-time feedback that sticks.
wjessup
370
20k
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
1.8k
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
290
Art, The Web, and Tiny UX
lynnandtonic
304
21k
Designing for Timeless Needs
cassininazir
0
150
The AI Search Optimization Roadmap by Aleyda Solis
aleyda
1
5.4k
Become a Pro
speakerdeck
PRO
31
5.8k
From π to Pie charts
rasagy
0
150
Deep Space Network (abreviated)
tonyrice
0
86
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: ?