How to fix
#ipcs -s | grep apache(apache user)
Removing this semaphores immediately solved the problem.
#ipcs -s | grep apache | perl -e 'while (<STDIN>) { @a=split(/\s+/); print `ipcrm sem $a[1]`}'
แก้แค่นั้น เดี๋ยวมันก็เป็นอีก
วิธีแก้ระยะยาว
เปิดไฟล์ /etc/sysctl.conf
add/edit
kernel.msgmni = 1024
kernel.sem = 250 256000 32 1024
ทำให้มีผลทันที่ ไม่ต้อง restart
#sysctl -p
URL : http://rackerhacker.com/2007/08/24/apache-no-space-left-on-device-couldn...