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?

ユーザーデータを用いてEC2立ち上げ時のログ

Last updated at Posted at 2023-11-23

ユーザーデータでEC2立ち上げ時のログ

ログを見る方法がわからなかったので調べてみました。

前提

EC2のセキュリティーグループにssh(22), http(80)Anywhereでアクセス許可していることを確認してください。

Ubuntu, 22.04 LTSにnginxをインストール

Ubuntu, 22.04 LTSnginxをインストールするユーザーデータ

ubuntuにnginxをインストール
#!/bin/bash

sudo apt update
sudo apt install -y nginx

EC2インスタンスにブラウザからアクセス

上記のユーザーデータがエラーなく実行できている場合は次のようなリンクでブラウザからEC2にアクセスしnginxのデフォルトページを観測できます。

http://EC2のパブリックアドレス

image.png

本題

ユーザーデータに何らかのエラーがあり、nginxのインストール等に失敗した場合はどのようにしてログを見るのか。

公式HPに書いてあった

引用すると、

ログファイルを表示するには、インスタンスに接続し、/var/log/cloud-init-output.log を開きます。

とあります。つまり、ssh接続して

cat /var/log/cloud-init-output.log

とすればログが見れそうですね。

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?