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
92
Accessing RDS from local
thanhgit
May 03, 2022
Tweet
Share
More Decks by thanhgit
See All by thanhgit
Developer portal
thanhgit
0
82
AWS ECS fargate
thanhgit
0
130
AWS Lambda function
thanhgit
0
180
CICD from on-premise to cloud
thanhgit
0
160
Infra as Code (terraform)
thanhgit
0
110
Pritunl VPN Server
thanhgit
0
150
AuthN & AuthZ with distributed systems
thanhgit
0
170
Permission design
thanhgit
0
77
Blockchain - góc nhìn về kĩ thuật và ứng dụng
thanhgit
0
260
Other Decks in Technology
See All in Technology
What is BigQuery?
aizack_harks
0
130
ACA でMAGI システムを社内で展開しようとした話
mappie_kochi
0
240
Findy Team+のSOC2取得までの道のり
rvirus0817
0
320
【新卒研修資料】LLM・生成AI研修 / Large Language Model・Generative AI
brainpadpr
23
16k
KMP の Swift export
kokihirokawa
0
330
研究開発部メンバーの働き⽅ / Sansan R&D Profile
sansan33
PRO
3
20k
Shirankedo NOCで見えてきたeduroam/OpenRoaming運用ノウハウと課題 - BAKUCHIKU BANBAN #2
marokiki
0
110
Exadata Database Service on Dedicated Infrastructure(ExaDB-D) UI スクリーン・キャプチャ集
oracle4engineer
PRO
2
5.4k
PLaMoの事後学習を支える技術 / PFN LLMセミナー
pfn
PRO
9
3.8k
Access-what? why and how, A11Y for All - Nordic.js 2025
gdomiciano
1
110
GopherCon Tour 概略
logica0419
2
180
SOC2取得の全体像
shonansurvivors
1
370
Featured
See All Featured
Building Flexible Design Systems
yeseniaperezcruz
329
39k
It's Worth the Effort
3n
187
28k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
Stop Working from a Prison Cell
hatefulcrawdad
271
21k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
30
2.9k
Keith and Marios Guide to Fast Websites
keithpitt
411
22k
The Invisible Side of Design
smashingmag
301
51k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
114
20k
Learning to Love Humans: Emotional Interface Design
aarron
274
40k
Six Lessons from altMBA
skipperchong
28
4k
Large-scale JavaScript Application Architecture
addyosmani
514
110k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
9
960
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: ?