4

How to switch from prefork mpm to worker mpm on ubuntu server?
how to roll back if there is any problem?

    root@myserver:~# apache2ctl -l
Compiled in modules:
core.c
mod_log_config.c
mod_logio.c
prefork.c
http_core.c
mod_so.c
root@myserver:~# aptitude search apache2-mpm-
p   apache2-mpm-event                                                      - Event driven model for Apache HTTPD
p   apache2-mpm-itk                                                        - multiuser MPM for Apache 2.2
p   apache2-mpm-perchild                                                   - Transitional package - please remove
i A apache2-mpm-prefork                                                    - Traditional model for Apache HTTPD
p   apache2-mpm-worker                                                     - High speed threaded model for Apache HTTPD
root@myserver:~#

Thanks in advance.

usef_ksa
  • 815
  • 4
  • 11
  • 16

3 Answers3

6

As you will be changing your configuration it would be advisable to backup your current configuration befor your install:

$ cp -R /etc/apache2 ~/backup
$ sudo apt-get install apache2-mpm-worker

If you run into problems you can

$ sudo apt-get install apache2-mpm-prefork
$ cp -R ~/backup /etc/apache2
pacey
  • 3,833
  • 1
  • 16
  • 31
  • On Ubuntu Server 14.04 I had to manually disable `mpm-event` and enable `mpm-worker` like this: `sudo a2dismod mpm_event && sudo a2enmod mpm_worker && sudo service apache2 restart` – dav.garcia May 19 '16 at 06:46
1

Just install the package apache2-mpm-worker. If you have any problem with it, just install the package apache2-mpm-prefork again.

Also note that they are mutually exclusive. You can't install them at the same time.

joschi
  • 21,387
  • 3
  • 47
  • 50