您的位置:首页 > 运维架构 > Apache

Apache No space left on device: mod_rewrite: could not create rewrite_log_lock Configuration Failed

2014-09-15 10:58 956 查看

更换ssl证书后,重启Apache失败。

查看Apache的error日志发现:

复制代码 代码如下:
[Fri May 20 18:07:23 2011] [crit] (28)No space left on device: mod_rewrite: could not create rewrite_log_lock
Configuration Failed
[Fri May 20 18:08:22 2011] [crit] (28)No space left on device: mod_rewrite: could not create rewrite_log_lock
Configuration Failed
[Fri May 20 18:13:50 2011] [crit] (28)No space left on device: mod_rewrite: could not create rewrite_log_lock
Configuration Failed
[Fri May 20 18:13:52 2011] [crit] (28)No space left on device: mod_rewrite: could not create rewrite_log_lock
Configuration Failed

解决方法:

复制代码 代码如下:
#重新写入一些活动信号量集的信息
ipcs -s | grep apache | perl -e 'while (<stdin>) { @a=split(/\s+/); print `ipcrm sem $a[1]`}'
</stdin>

参考链接:
http://carlosrivero.com/fix-apache―no-space-left-on-device-couldnt-create-accept-lock

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  Apache No space left on device
相关文章推荐