For some reasons unknow to me, Apache is crashing.
This is the apache log at the moment of the crash:
[Sat Jun 02 02:38:05.196006 2018] [mpm_prefork:emerg] [pid 1122] (43)Identifier removed: AH00144: couldn't grab the accept mutex
[Sat Jun 02 02:38:05.196006 2018] [mpm_prefork:emerg] [pid 1116] (43)Identifier removed: AH00144: couldn't grab the accept mutex
[Sat Jun 02 02:38:05.198767 2018] [mpm_prefork:emerg] [pid 1115] (43)Identifier removed: AH00144: couldn't grab the accept mutex
[Sat Jun 02 02:38:05.199523 2018] [mpm_prefork:emerg] [pid 3924] (43)Identifier removed: AH00144: couldn't grab the accept mutex
[Sat Jun 02 02:38:05.204189 2018] [mpm_prefork:emerg] [pid 1937] (43)Identifier removed: AH00144: couldn't grab the accept mutex
[Sat Jun 02 02:38:05.207362 2018] [mpm_prefork:emerg] [pid 1120] (43)Identifier removed: AH00144: couldn't grab the accept mutex
[Sat Jun 02 02:38:06.057310 2018] [core:alert] [pid 1099] AH00050: Child 1115 returned a Fatal error... Apache is exiting!
[Sat Jun 02 02:38:06.057483 2018] [:emerg] [pid 1099] AH02818: MPM run failed, exiting
The last thing I did on the server lately was to install certbot to general HTTPS certificates for my sites.
While Sean solution is valid, I learned another way to solve this problem.
First, you should know that this problem is related to using Certbot and SSL certificates on Ubuntu.
Now, to solve the problem without doing anything you're unsure of, simply do this (as root or with sudo):
/etc/apache2/conf-available/mutex.conf
Mutex file:${APACHE_LOCK_DIR} default
inside the newly created filea2enconf mutex
systemctl restart apache2
or systemctl reload apache2
But hey, it's already enabled by default! Why make a file just for that?
I though the same when I found this solution.
By one wonder or another, it seems that once your start using SSL certificates, this configuration line is somehow "ignored".
Thus, Apache fail to find the lock dir for the mutex file.
Just adding (remove comment) this line into /etc/apache2/apache2.conf
isn't working either.
You have to specifically create a configuration file and enable it.
Else it won't solve the problem.
I was experiencing the same error on Ubuntu 17.10 with Apache 2.4.27.
It appears to have to do with Apache talking to the OS about file locking. When I went into /etc/apache2/apache2.conf
and added Mutex flock
to the Mutex section (near the ServerRoot section), it seems to have solved the problem.
Unfortunately, all I can say is that this uses the flock() function (a system call?) to handle file locking. Per https://httpd.apache.org/docs/2.4/mod/core.html#mutex
So it's a bit of a black magic fix in that I personally am not familiar enough with Apache's file locking behavior to say why it works, and I can only say it works because the Apache crash seems to have stopped, but only thus far. Nevertheless, it may help you and seems fairly low-risk.
Below steps worked out for me in my case.
Connect to the server via SSH
Edit the /etc/apache2/apache2.conf file. Below command I used nano editor and you can use your favorite editor
sudo nano /etc/apache2/apache2.conf
Search for "Mutex" section
Add the below line,
Mutex posixsem
Save and close the file.
Check the configuration before restarting Apache service by running the command,
sudo apachectl configtest
sudo service apache2 restart
Hope this helps someone.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With