web-dev-qa-db-ja.com

マウントされたNFSデバイスの「デバイスにスペースが残っていません」

NFSサーバーの場合:

Filesystem           1K-blocks      Used Available Use% Mounted on
/dev/xvdf2           103212320  85090308  12879132  87% /export18

クライアントサーバーの場合:

ip-xxxxxxxx.ap-northeast-1.compute.internal:/export18
                 103212320  85090304  12879136  87% /export18

しかし、ファイルを作成しようとすると、次のメッセージが表示されます。

touch: cannot touch `/export18/test': No space left on device

ボリュームをアンマウントし、fsckを実行しました:

fsck -t ext3 /dev/xvdf2
fsck from util-linux-ng 2.17.2
e2fsck 1.41.14 (22-Dec-2010)
/dev/xvdf2 has gone 484 days without being checked, check forced.
Pass 1: Checking inodes, blocks, and sizes
Pass 2: Checking directory structure
Pass 3: Checking directory connectivity
Pass 4: Checking reference counts
Pass 5: Checking group summary information
/dev/xvdf2: 6553600/6553600 files (4.8% non-contiguous), 21683897/26214400 blocks

たぶん非連続の4.8%は少し高いですが...それでも書くことができません。

質問:%87しか使用されていない場合、ボリュームに書き込めない理由は何でしょうか?

編集:

Filesystem            Inodes   IUsed   IFree IUse% Mounted on
/dev/xvdf2           6553600 6553600       0  100% /export18
2
Roman Newaza

Iノードが不足している可能性があります。チェックしてください df -iNFSサーバー上。

4
Gevial