2
1

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.

【Linuxコマンド】tail -f でリアルタイムでログを見る

Last updated at Posted at 2019-12-23

tail -f

tail -f

最後の方の行を表示するtailコマンド。
tailコマンドの-fオプション、
これを使えばリアルタイムで最新のログを見ることができます。

実用例

apacheのアクセスログ確認

tail -f /var/log/httpd/ssl_access_log | grep seeurl

tail -f でリアルタイムのログを取得して、
且つgrepで任意の文字が含まれるものだけ拾って表示。

RoRプロジェクトのログ確認

tail -f /var/www/projects/project_name/current/log/test.log
tail -f /var/www/projects/project_name/current/log/production.log

RoRのlogファイルがある場所を指定すると当たり前ですが、
プロジェクトのエラーログをリアルタイムで表示できます。
割とよく使う。

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?