欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

Apache No space left on device的解决办法

程序员文章站 2023-12-24 15:13:27
用以下命令可以查看所有的信号量: # ipcs -s ------ semaphore arrays -------- key semid owner perms nsem...
用以下命令可以查看所有的信号量:

# ipcs -s
------ semaphore arrays --------
key semid owner perms nsems
0x00000000 19234816 nobody 600 1
0x00000000 19267585 nobody 600 1
0x00000000 19300354 nobody 600 1
0x00000000 19398659 nobody 600 1
0x00000000 19431428 nobody 600 1
0x00000000 19464197 nobody 600 1
0x00000000 19562502 nobody 600 1然后用这行命令删除所有的信号量即可:

ipcs -s | grep nobody | perl -lane 'print `ipcrm sem $f[1]`'

上一篇:

下一篇: