09 Kas 2017
Apache No space left on device: AH00023: Couldn’t create the proxy mutex hatası ve çözümü
Selamlar,
[Thu Nov 09 13:29:02.000830 2017] [core:emerg] [pid 26760:tid 139901569992640] (28)No space left on device: AH00023: Couldn’t create the proxy mutex
[Thu Nov 09 13:29:02.001008 2017] [proxy:crit] [pid 26760:tid 139901569992640] (28)No space left on device: AH02478: failed to create proxy mutex
Apache servisi başlamıyor ve error loglarda yukarıdaki gibi hata alıyorsanız yapmanız gereken kernel limitlerini güncellemektir.
ipcs –s
for i in `ipcs –s | awk ‘/httpd/ {print $2}’`; do (ipcrm –s $i); done
/etc/sysctl.conf dosyasının sonuna aşağıdaki gibi ekleme yapın
kernel.msgmni = 1024kernel.sem = 250 256000 32 1024
sysctl -p
service httpd restart
İşlem bu kadar.