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;
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;