4
4

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 3 years have passed since last update.

AWSにEC2上にdockerを使用したlaravelをデプロイ③(SSH接続〜Docke-composeインストール)

Last updated at Posted at 2020-10-11

##概要##
・自分が詰まったポイントと同じポイントで詰まった方向けにAWSにlaravel/dockerをデプロイするまでの過程を書いていきます。

前回の記事
AWSにdockerを使用したlaravelをデプロイ②

##EC2インスタンスにSSHでアクセスする##
1:EC2ダッシュボード作成したインスタンスに入りの右上の「接続」をクリック
スクリーンショット 2020-10-10 22.11.55.png

2:インスタンスに接続コード確認
「SSH クライアント」をクリック
スクリーンショット 2020-10-10 22.12.06.png

3:EC2インスタンスにSSHでアクセス
ターミナルを起動し

chmod 400 test-docker.pem
ssh -i "test-docker.pem" ubuntu@ec2-52-198-43-4.ap-northeast1.compute.amazonaws.com

test-docker.pemの部分はダウンロードし格納したディレクトリを指定して下さい。

##Gitのインストール##
EC2内への変更にはスーパーユーザーで行わないといけないので「sudo」を打つか

ubuntu@ip:~$ sudo su
root@ip:/home/ubuntu# 

行頭にある「$(ドル)」が一般ユーザーを表し、「#(シャープ)」がrootユーザーを表します。

1:aptの更新

root@ip:/home/ubuntu# apt-get update

2:Gitのインストール
Gitのインストールと初期設定を行います。

#gitインストール
root@ip:/home/ubuntu# apt-get install git

#git初期設定
root@ip:/home/ubuntu# git config --global user.name [任意のユーザー名]
root@ip:/home/ubuntu# git config --global user.email [任意のemailアドレス]

##Docker,Docker-composeのインストール##
ubuntu用の手順をDocker公式ページに従います。
Docker,Docker-composeのインストールを行います。

root@ip:/home/ubuntu# apt-get install \apt-transport-https \ca-certificates \curl \gnupg-agent \software-properties-common

root@ip:/home/ubuntu# curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -

root@ip:/home/ubuntu# apt-key fingerprint 0EBFCD88

root@ip:/home/ubuntu# add-apt-repository \
                      "deb [arch=amd64] https://download.docker.com/linux/ubuntu \
                      $(lsb_release -cs) \
                      stable"

root@ip:/home/ubuntu# apt-get install docker-ce docker-ce-cli containerd.io

#docker-composeのインストール
root@ip:/home/ubuntu# apt install docker-compose

前回の記事
AWSにEC2上にdockerを使用したlaravelをデプロイ②

続きはこちら
[AWSにdockerを使用したlaravelをデプロイ④]
(https://qiita.com/JXnj8uVrUkiBh90/items/65f55ad1f79f32f26547)

**間違い等ございましたらご指摘お願い致します**

4
4
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
4
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?