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
for i in `cat sem.txt`; do { ipcrm -s $i; }; done;


Was this article helpful?

mood_bad Dislike 1
mood Like 0
visibility Views: 7749