0
0

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 1 year has passed since last update.

AWSプライベートサブネット内のインスタンスにMySQLサーバーを設置(備忘録)

Posted at

プライベートサブネット内のインスタンスにアクセス

//プライベートキーのファイルを作成
$ nano myprivatekey.pem

別Windowが立ち上がるので、手持ちのプライベートキーをコピー&ペーストし、Ctrl + x で保存しy及びEnterで終了。

//プライベートキーのファイルに400の権限を付与
$ chmod 400 myprivatekey.pem

//プライベートキーを使用してプライベートサブネット内のインスタンスにアクセス
$ssh ec2-user@[プライベートのIPアドレス] -i myprivatekey.pem

ログインの確認をされるので'yes'でログイン。

プライベートサブネット内のインスタンスにMySQLサーバーを設置

パグリックサブネットにnat gatewayを作成後、

//ルートに移動
$ sudo su

//不足しているパッケージのアップデート
$ yum update -y

//MySQLをDLしインストール
$ yum localinstall https://dev.mysql.com/get/mysql80-community-release-el7-5.noarch.rpm -y
$ yum install -y mysql-community-server
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?