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

[Rails] 容量を圧迫しているtmpとlogファイルを削除する

Posted at

概要

開発マシンが容量不足...
容量を圧迫しているファイルを特定すると、Railsのtmplogディレクトリが容量を食い潰していました。

$ sudo du -h --max-depth=1 . | sort -hr
43G     .
26G     ./tmp
17G     ./log

削除

VSCode上から削除しても良かったのですが、
調べてみると、Railslogtmpを削除するコマンドが用意されていました。

tmp の削除

rails tmp:clear

tmpディレクトリからキャッシュ、ソケット、スクリーンショットファイルをクリア

log の削除

rails log:clear

logディレクトリ以下にあるすべての*.logファイルを0バイトに切り詰める

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