- 19
- 04
- 2011
Could not bind to address 0.0.0.0:80 no listening sockets available, shutting down unable to open logs hatası ve çözümü
Kategorisi : Apache1)Tüm nobody süreçlerini Kill’leyin.
root@del [~]#for i in `ps auwx | grep -i nobody | awk {‘print $2’}`; do kill -9 $i; done
ya da
root@del [~]#for i in `lsof -i :80 | grep http | awk {‘ print $2’}`; do kill -9 $i; done
2) Apache yine de başlamazsa. Bu şekilde deneyin:
root@del [~]#for i in `ipcs -s | grep nobody | awk ‘{print $2}’`; do ipcrm -s $i; done
3) Apache’yi restart edin.
Daha kolay yoldan halletmek isterseniz;
apachectl -k stop
service httpd start