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;
Leave a Reply
You must be logged in to post a comment.