3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

apache2: Configuration error: More than one MPM loadedのへの対処

Last updated at Posted at 2018-03-18

apt-getup gradeでapache2のバージョンが2.4.10になったことにより、
設定ファイルに複数のmpmモジュールを記載していると競合が発生し、apach2が起動しない事象が発生した。

Starting web server: apache2AH00534: apache2: Configuration error: More than one MPM loaded

下記のようにバッティングしているファイルを削除したところ、
apacheが起動するようになった。

$ view /etc/apache2.conf
# Include module configuration:
IncludeOptional mods-enabled/*.load
IncludeOptional mods-enabled/*.conf

$ ls -l /etc/apache2/mods-enabled/mpm*

$ rm -f /etc/apache2/mods-enabled/mpm_event.load
$ rm -f /etc/apache2/mods-enabled/mpm_event.conf

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?