Archive for the tag 'left'

SBDavid

semget: No space left on device

semget: No space left on device

This relates to semaphores on your system (you’ve run out). Run the following to clear them out:

ipcs | grep apache | awk ‘{print $2}’ > sem.txt

And then run the following.

for i in `cat sem.txt`; do { ipcrm -s $i; }; done;