Out of Control® - » Apache: No space left on device: Cannot create SSLMutex
Apache: No space left on device: Cannot create SSLMutex
via Out of Control® - » Apache: No space left on device: Cannot create SSLMutex.
This is first time for me and my colleague too, had to restart apache on one of our webservers and bam! It failed to restart even though I'm sure the configs were fine, checked the error_log and it showed the error about not having enough space. I knew there were plenty of space on the server, so I quickly googled around and found several post.
That post helped me out of this sticky situation.
ipcs -s | grep apache_user
So if apache is running as nobody type
ipcs -s | grep nobody
ipcs -s | grep nobody | awk ' { print $2 } ' | xargs -n 1 ipcrm -s
via Out of Control® - » Apache: No space left on device: Cannot create SSLMutex.
This is first time for me and my colleague too, had to restart apache on one of our webservers and bam! It failed to restart even though I'm sure the configs were fine, checked the error_log and it showed the error about not having enough space. I knew there were plenty of space on the server, so I quickly googled around and found several post.
That post helped me out of this sticky situation.
ipcs -s | grep apache_user
So if apache is running as nobody type
ipcs -s | grep nobody
ipcs -s | grep nobody | awk ' { print $2 } ' | xargs -n 1 ipcrm -s
Comments
Post a Comment