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
AIエンジニア Devin と歩む、自律型運用プロセスの構築
a2ito
0
250
大規模な組織におけるAI Agent活用の促進と課題
lycorptech_jp
PRO
4
6.4k
バニラVisaギフトカードを棄てるのは結構大変
meow_noisy
0
160
APMの世界から見るOpenTelemetryのTraceの世界 / OpenTelemetry in the Java
soudai
PRO
0
200
Snowflakeデータ基盤で挑むAI活用 〜4年間のDataOpsの基礎をもとに〜
kaz3284
1
270
オンプレとGoogle Cloudを安全に繋ぐための、セキュア通信の勘所
waiwai2111
3
620
「静的解析」だけで終わらせない。 SonarQube の最新機能 × AIで エンジニアの開発生産性を本気で上げる方法
xibuka
2
340
AI時代のAPIファースト開発
nagix
2
660
AIで 浮いた時間で 何をする? 2026春 #devsumi
konifar
16
3.4k
チームメンバー迷わないIaC設計
hayama17
4
3k
【2026年版】生成AIによる情報システムへのインパクト
taka_aki
0
190
トラブルの大半は「言ってない」x「言ってない」じゃねーか!!
ichimichi
0
190
Featured
See All Featured
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
1.8k
The B2B funnel & how to create a winning content strategy
katarinadahlin
PRO
1
290
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
360
What's in a price? How to price your products and services
michaelherold
247
13k
How to build an LLM SEO readiness audit: a practical framework
nmsamuel
1
660
Designing for humans not robots
tammielis
254
26k
Ten Tips & Tricks for a 🌱 transition
stuffmc
0
82
Measuring Dark Social's Impact On Conversion and Attribution
stephenakadiri
1
140
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
2.3k
Why Our Code Smells
bkeepers
PRO
340
58k
Building Applications with DynamoDB
mza
96
6.9k
The untapped power of vector embeddings
frankvandijk
2
1.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: ?