Logoj0ke.net Open Build Service > Projects > Apache > apache2 > apache2-README
Sign Up | Log In

File apache2-README of Package apache2

 
1
README.SuSE for Apache 2
2
3
4
For The Impatient
5
=================
6
7
 o There are several MPM packages (MPM = multiprocessing module, which implements 
8
   the threads/processes model). The MPM packages contain the actual apache binary. 
9
   At least one MPM package must be installed.
10
11
 o The apache v1 and v2 packages can be installed and run side by side :)
12
13
 o Some commands have a "2" suffix, and are thus easily confused with Apache 1
14
   commands -- if you have an old apache (1.3) installation around.
15
16
 o Edit /etc/sysconfig/apache2 to configure the list of modules to load, and other things. 
17
   It is no longer required to run SuSEconfig after such changes. (In fact, the
18
   SuSEconfig.apache2 does no longer exist.)
19
20
21
 o For building apache modules, there are 4 apxs commands (all come with the 
22
   apache2-devel package):
23
    apxs2               builds a common module for all MPMs and installs to /usr/lib/apache2
24
    apxs2-prefork       builds for prefork and installs to /usr/lib/apache2-prefork
25
    apxs2-worker        builds for worker and installs to /usr/lib/apache2-worker
26
27
   If you build apache modules, the configure script might not find apxs, and
28
   you'll need an option like --with-apxs=apxs2[-worker, ...], or of course you can set 
29
   a symlink to apxs2.
30
31
 o The Apache Runtime (APR) is in the "libapr0" package (this package was named "apr" 
32
   in the past (8.1))
33
   
34
35
Choosing the right MPM for your application
36
===========================================
37
38
apache2-prefork is implemented with a prefork regime, while
39
apache2-worker uses a hybrid threaded/preforked model.
40
41
Which one to use? The short answer is: 
42
 - if in doubt, simply use prefork
43
 - use prefork if you use mod_php4
44
 - use worker if you need maximal performance with (possibly) less resources
45
   (smaller memory footprint of threade compared to the same number as processes)
46
47
The following nice article has a more in depth answer:
48
http://www.onlamp.com/pub/a/apache/2004/06/17/apacheckbk.html
49
50
See 
51
http://httpd.apache.org/docs-2.2/mpm.html  and
52
http://httpd.apache.org/docs-2.2/misc/perf-tuning.html#compiletime 
53
for more technical details.
54
55
In general, using a threaded MPM (worker) requires that all libraries that are
56
loaded into apache (and libraries loaded by them in turn) be threadsafe as well.
57
See
58
http://httpd.apache.org/docs-2.2/developer/thread_safety.html for a status on
59
some libraries.
60
61
62
Upgrading from apache 1.3
63
=========================
64
65
For a smooth transition from apache 1.3, apache 2 is installable alongside apache
66
1.3. There are a few modules for apache 1 that have not been ported or enough
67
tested for apache 2, but most important modules are available by now.
68
69
The mechanism of specifying modules to load into the server has been cleaned up
70
so a reasonable default set of modules is loaded. (It is not useful to load all
71
available modules by default, it would make the server quite big and slow. This
72
is important given as the number of modules in the apache base distribution is
73
rising and rising (about 50 at this time).
74
75
In previous apache packages (1.3), modules were activated by setting a
76
APACHE_MOD_XYZ variable to "yes" and running SuSEconfig.
77
Nowadays, modules are activated by adding them to a the APACHE_MODULES
78
variable in /etc/sysconfig/apache2, and simply restarting apache.
79
80
81
Building modules for apache 2
82
=============================
83
84
Therefore, the different MPMs will be needed and a mechanism to build
85
the modules spesific to them.  This can now be done with the apxs2, 
86
apxs2-worker or apxs2-prefork script.
87
88
For a module's configure script, you would typically use
89
 --which-apxs=/usr/sbin/apxs2-prefork
90
91
In RPM spec files, you can use
92
  %define apxs apxs2
93
  %define apache_libexecdir %(%{apxs} -q libexecdir)
94
to build modules, or use apxs2-prefork (for instance) to build a module
95
specifically for the prefork MPM.
96
97
To further the example, apxs2-prefork will install a module below
98
/usr/lib/apache2-prefork/, while "apxs2" will install it below
99
/usr/lib/apache2/. 
100
101
-a adds the module to APACHE_MODULES in /etc/sysconfig/apache2, which in turn
102
takes care of loading the module.
103
104
Thus, usually you will only have to call
105
 apxs2 -cia my_module.c
106
and all is fine.
107
108
109
-- 
110
Suggestions or bug reports (via http://bugzilla.novell.com/) are most
111
welcome.
112
113
114
Mar 14 2005, Peter Poeml
115