(98)Address already in use: make_sock: could not bind to address [::]:443
(98)Address already in use: make_sock: could not bind to address 0.0.0.0:443
no listening sockets available, shutting down
Unable to open logs
Also check if Apache logs have exceeded 2GB of limit.
1)Kill All nobody process running on the server. Use the following script for doing that.
cijo@server [~]#for i in `ps auwx | grep -i nobody | awk {‘print $2’}`; do kill -9 $i; done
or
cijo@server [~]#for i in `lsof -i :80 | grep http | awk {‘ print $2’}`; do kill -9 $i; done
2) If apache is not restarting after this. Remove semaphore using the following script.
cijo@server [~]#for i in `ipcs -s | grep nobody | awk ‘{print $2}’`; do ipcrm -s $i; done
3) Restart apache.
If you require help, contact SupportPRO Server Admin
