Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 653376 - www-servers/apache-2.4.29-r1 does not start under systemd with SSL enabled
Summary: www-servers/apache-2.4.29-r1 does not start under systemd with SSL enabled
Status: UNCONFIRMED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Apache Team - Bugzilla Reports
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2018-04-17 12:59 UTC by tazinblack
Modified: 2021-04-28 19:22 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description tazinblack 2018-04-17 12:59:12 UTC
Module SSL requires /run/apache_ssl_mutex to exist at startup but it does not.

This is configured in /etc/apache2/modules.d/40_mod_ssl.conf.

---------------------
...

## Semaphore:
# Configure the path to the mutual exclusion semaphore the SSL engine uses
# internally for inter-process synchronization.
Mutex file:/run/apache_ssl_mutex ssl-cache
...

---------------------

Workaround:

Use /etc/tmpfiles.d/apache.conf to create missing directory at boot:

---------------------
d /run/apache_ssl_mutex 0755 root root
---------------------