linux inode已满解决方法 – 傲雪星枫 – 博客频道 – CSDN.NET

  • A+
所属分类:其他杂项
本文信息本文由方法SEO顾问发表于2016-12-0123:34:28,共 2097 字,转载请注明:linux inode已满解决方法 – 傲雪星枫 – 博客频道 – CSDN.NET_【方法SEO顾问】

Linux inode已满解决方法


今天login server的一个网站,发现login后没有生成session。根据以往经验,一般是空间已满导致session文件生成失败。

[plain] view plain copy

ico_fork.svg

  1. df -h  
  2.   
  3. Filesystem                    Size  Used Avail Use% Mounted on  
  4. /dev/mapper/dev01-root         75G   58G   14G  82% /  
  5. udev                          2.0G  4.0K  2.0G   1% /dev  
  6. tmpfs                         396M  292K  396M   1% /run  
  7. none                          5.0M     0  5.0M   0% /run/lock  
  8. none                          2.0G  4.0K  2.0G   1% /run/shm  
  9. /dev/sda1                     228M  149M   68M  69% /boot  

空间剩余14G,可以排除空间已满的情况。导致文件生成失败还有另一个原因,就是文件索引节点inode已满。

[plain] view plain copy

ico_fork.svg

  1. df -i  
  2.   
  3. Filesystem                    Inodes   IUsed  IFree IUse% Mounted on  
  4. /dev/mapper/dev01-root       4964352 4964352      0  100% /  
  5. udev                          503779     440 503339    1% /dev  
  6. tmpfs                         506183     353 505830    1% /run  
  7. none                          506183       5 506178    1% /run/lock  
  8. none                          506183       2 506181    1% /run/shm  
  9. /dev/sda1                     124496     255 124241    1% /boot  

inodes 占用100%,果然是这个问题。


解决方法:删除无用的临时文件,释放inode。

查找发现 /tmp 目录下有很多sess_xxxxx的 session临时文件。

[plain] view plain copy

ico_fork.svg

  1. ls -lt /tmp | wc -l  
  2. 4011517  

进入/tmp目录,执行find -exec命令

[plain] view plain copy

ico_fork.svg

  1. sudo find /tmp -type f -exec rm {} \;  

如果使用rm *,有可能因为文件数量太多而出现Argument list too long错误,关于Argument list too long错误可以参考《linux Argument list too
long错误解决方法》


除了/tmp的临时文件外,0字节的文件也会占用inode,应该也释放。

遍历寻找0字节的文件,并删除。

[plain] view plain copy

ico_fork.svg

  1. sudo find /home -type f -size 0 -exec rm {} \;  

删除后,inode 的使用量减少为19%,可以正常使用了。

[plain] view plain copy

ico_fork.svg

  1. df -i  
  2.   
  3. Filesystem                    Inodes  IUsed   IFree IUse% Mounted on  
  4. /dev/mapper/dev01-root       4964352 940835 4023517   19% /  
  5. udev                          503779    440  503339    1% /dev  
  6. tmpfs                         506183    353  505830    1% /run  
  7. none                          506183      5  506178    1% /run/lock  
  8. none                          506183      2  506181    1% /run/shm  
  9. /dev/sda1                     124496    255  124241    1% /boot 

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: