:: Apache error logs
|
1 |
No space left on device: Cannot create SSLMutex Configuration Failed |
:: How to fix
+ checking semaphore-arrays left for apache users
|
1 |
ipcs -a |
or
|
1 |
ipcs -a | grep daemon |
+ removing the semaphores
|
1 |
ipcs -a | grep daemon | awk ' { print $2 } ' | xargs -n 1 ipcrm -s |
+ Change SSLMutex on httpd-ssl.conf
|
1 2 3 |
vi httpd-ssl.conf
## change to :
SSLMutex sem |
+ Restarting Apache
|
1 2 |
apachectl stop
apachectl start |
:: Links
+ Google
+ Carlosrivero