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
84
Accessing RDS from local
thanhgit
May 03, 2022
Tweet
Share
More Decks by thanhgit
See All by thanhgit
Developer portal
thanhgit
0
71
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
100
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
Cross Data Platforms Meetup LT 20250422
tarotaro0129
1
840
2025-04-14 Data & Analytics 井戸端会議 Multi tenant log platform with Iceberg
kamijin_fanta
0
140
SDカードフォレンジック
su3158
1
660
Terraform Cloudで始めるおひとりさまOrganizationsのすゝめ
handy
2
210
2025-04-24 "Manga AI Understanding & Localization" Furukawa Arata (CyberAgent, Inc)
ornew
2
300
Web Intelligence and Visual Media Analytics
weblyzard
PRO
1
5.9k
意思決定を支える検索体験を目指してやってきたこと
hinatades
PRO
0
340
ここはMCPの夜明けまえ
nwiizo
32
12k
10ヶ月かけてstyled-components v4からv5にアップデートした話
uhyo
5
430
AIにおけるソフトウェアテスト_ver1.00
fumisuke
1
300
C++26アップデート 2025-03
faithandbrave
0
1.1k
AIエージェント開発手法と業務導入のプラクティス
ykosaka
9
2.5k
Featured
See All Featured
Understanding Cognitive Biases in Performance Measurement
bluesmoon
29
1.6k
Sharpening the Axe: The Primacy of Toolmaking
bcantrill
41
2.3k
Build your cross-platform service in a week with App Engine
jlugia
230
18k
Building Adaptive Systems
keathley
41
2.5k
Visualization
eitanlees
146
16k
BBQ
matthewcrist
88
9.6k
How to Think Like a Performance Engineer
csswizardry
23
1.5k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.4k
Building a Scalable Design System with Sketch
lauravandoore
462
33k
We Have a Design System, Now What?
morganepeng
52
7.5k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
104
19k
Typedesign – Prime Four
hannesfritz
41
2.6k
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: ?