pache排查问题:Apache ERROR: No space left on device: AH00023: Couldn't create the ssl-cache mutex(示例
Posted syy714363310
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pache排查问题:Apache ERROR: No space left on device: AH00023: Couldn't create the ssl-cache mutex(示例相关的知识,希望对你有一定的参考价值。
1:启动apache:systemctl status httpd.service
2:查看看日志:tail -f /var/log/httpd/error_log
报:Apache ERROR: No space left on device: AH00023: Couldn‘t create the ssl-cache mutex
3:查看进程ps ax|grep httpd,进程存在杀掉
4:查看apache分析消息队列、共享内存和信号量
ipcs -s | grep apache
5:删除apache分析消息队列、共享内存和信号量
ipcs -s | grep apache | perl -e ‘while (<STDIN>) { @a=split(/s+/); print `ipcrm sem $a[1]`}‘
6:重启apacheservice httpd restart
以上是关于pache排查问题:Apache ERROR: No space left on device: AH00023: Couldn't create the ssl-cache mutex(示例的主要内容,如果未能解决你的问题,请参考以下文章
排查sqoop报错:Error running child : java.lang.OutOfMemoryError: Java heap space
使用 preg_match 在 PHP 中解析 Apache 日志
Tomcat启动报错:SERVER: Error ListenerStart 排查过程记录
Apache Cassandra安装错误Windows 10:hotspot_compiler
Flink实战系列Flink 提交任务遇到 Server Response Internal server error 怎么排查