7
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

DBeaverでSSHポートフォワーディングしてAWS EC2のMySQLに接続

Posted at

概要

SSIA

環境

  • 開発端末
    • Mac
  • サーバ
    • AWS Linux 2
    • MySQL 8.0.15

目的

  • AWSにDBを置いて3306で通信すると、暗号化されてないので危険
  • そこで暗号化ですよ
  • そこでSSHポートフォワーディングですよ
    • SSHトンネリングと言った方が想像しやすいが、googleabilityはポートフォワーディングの方が上

手順

  • AWS EC2にMySQLをインストール
  • インスタンスにSSH接続 ssh -i "mylara-db.pem" ec2-user@50.198.199.200
  • mysqlコマンド実行してから
CREATE DATABASE IF NOT EXISTS `mylaradb` COLLATE 'utf8_general_ci';
CREATE USER 'mylara'@'localhost' IDENTIFIED WITH mysql_native_password BY 'Mylara-Password1234';
GRANT ALL ON `mylaradb`.* TO `mylara`@`localhost`;

※ mysql_native_passwordは本題と関係ないです

  • 開発端末にDBeaverをインストール
  • 接続設定

スクリーンショット 2019-03-27 2.04.40.png
スクリーンショット 2019-03-27 2.05.50.png

結果

接続成功

スクリーンショット 2019-03-27 2.19.36.png

Hope this helps.

7
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
11

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?