Get your server issues fixed by our experts for a price starting at just 25 USD/Hour. Click here to register and open a ticket with us now!

Author Topic: No space left on device: mod_rewrite: could not create rewrite_log_lock  (Read 2475 times)

0 Members and 1 Guest are viewing this topic.

Aby

  • Guest
No space left on device: mod_rewrite: could not create rewrite_log_lock

If you are getting “No space left on device: mod_rewrite: could not create rewrite_log_lock”  while restarting apache, then please execute the following commands in shell prompt:

ipcs -s | grep nobody
for i in `ipcs -s | grep nobody | awk ‘{print $2}’`; do ipcrm -s $i; done


Reason: Apache user occupies large number of semaphore arrays.. The above script will remove the semaphore arrays by using ipcrm command
---