semget: No space left on device
by admin on Sep.07, 2009, under DirectAdmin
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;
No related posts.
Related posts brought to you by Yet Another Related Posts Plugin.
