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

No space left on deviceが発生したとき

Posted at

#No space left on device
このエラーは端末(サーバー)の容量がいっぱいの時に起こるエラーです。

####まず容量を確認するために以下のコードを記述する。

df -h
#=>Filesystem      Size  Used Avail Use% Mounted on
   devtmpfs        483M   60K  483M   1% /dev
   tmpfs           493M     0  493M   0% /dev/shm
   /dev/xvda1      9.8G  9.6G   36M 100% /

useが100%になって、ファイルが圧迫されていることがわかる。

####不要なファイルを削除しましょう

du -sh ./* 
#=>
4.0K    ./,,,
60K     ./,,,,
832K    ./,,,,,,
54M     ./
1.4M    ./
304K    .
12M     ./
9.0M    ./
4.0K    ./
4.0K    ./
4.0K    ./
4.0K    ./
11M     ./
1.6M    ./
700K    ./
752K    ./
16K     ./

上記のようにどのファイルが、どれくらいの容量をくっているのかわかります。
いらないログファイルや、いらないファイルは削除しましょう。

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?