Semaphores
# ipcs -s
If you see a list of semaphores, Apache has not cleaned up after itself, and some semaphores are stuck. Clear them out with this command:
for i in `ipcs -s | awk '/httpd/ {print $2}'`; do (ipcrm -s $i); done
# ipcs -s
If you see a list of semaphores, Apache has not cleaned up after itself, and some semaphores are stuck. Clear them out with this command:
for i in `ipcs -s | awk '/httpd/ {print $2}'`; do (ipcrm -s $i); done
No comments:
Post a Comment