Apache error - No space left on device error message on /etc/httpd/logs/error_log
Written by anil on June 19th, 2007 in apache, Linux, cPanel/WHM.
Apache hangs with semget: No space left on device error message on /etc/httpd/logs/error_log
Solution,
Execute commnads a root.
First make sure apache is using it
ipcs -s
If you are seeing a lot of nobody owned process, there is problem .. Follow the next steps to correct it.
service httpd stop
/usr/bin/ipcrm sem $(/usr/bin/ipcs -s | grep nobody | awk ‘{print$2}’)
service httpd start
Thanks