zabbix linux How to solve apache error No space left on device: Cannot create SSLMutex

Diagnosis

When Apache does not start and shows the following result while prompting it to start, check the error_log file,

Starting httpd : [Failed]

The following error in error_log file may be causing the issue ( /var/log/httpd/error_log )

[error] (28)No space left on device: Cannot create SSLMutex

Cause

These errors mean that there are no available IPC (inter-process communication) resources in the system, such as semaphores or shared memory segments.

To check the allocated semaphores use the command ipcs -us

Solution

Option 1:

Run this command as root,

# ipcs | grep apache

If you see a list of semaphores, apache has not cleaned itself. Use the following command to clean it,

# ipcs -s | grep apache | awk ’ { print $2 } ’ | xargs -n 1 ipcrm -s

Option 2:

Increase the limits in /etc/sysctl.conf

kernel.msgmni = 1024
kernel.sem = 250 256000 32 1024

Load the new sysctl settings from  /etc/sysctl.conf

# sysctl -p
Updated on March 1, 2017
https://www.agix.com.au/automatically-block-intruders-with-pfsense/
0 (0)
Article Rating (No Votes)
Rate this article
Attachments
There are no attachments for this article.
Comments
There are no comments for this article. Be the first to post a comment.
Full Name
Email Address
Security Code Security Code
Related Articles RSS Feed
Top 20 OpenSSH Server Best Security Practices ssh linux aix
Viewed 5986 times since Fri, May 15, 2020
How log rotation works with logrotate
Viewed 4921 times since Fri, Nov 30, 2018
Jak wygenerować silne hasła jednorazowe w Linuksie?
Viewed 2364 times since Thu, May 24, 2018
Fake A Hollywood Hacker Screen in Linux Terminal linux FUN
Viewed 6136 times since Thu, Apr 18, 2019
ZFS: Remove an existing zfs filesystem
Viewed 2147 times since Sun, Jun 3, 2018
RHEL: How to change a USER/GROUP UID/GID and all owned files
Viewed 22591 times since Sat, Jun 2, 2018
How to encrypt a partition with DM-Crypt LUKS on Linux
Viewed 8240 times since Fri, Jul 13, 2018
Do you Know These 5 Use of V$session View ?
Viewed 107260 times since Thu, Jun 21, 2018
12 Linux Rsync Options in Linux Explained
Viewed 12061 times since Wed, Oct 31, 2018
LUKS dm-crypt/Device encryption GUIDE
Viewed 2308 times since Fri, Jul 13, 2018