—=head1 mod_perl Installation
=head1 A Summary of a Basic mod_perl Installation
The following 10 commands summarize the execution steps required to
build and install a basic mod_perl enabled Apache server on almost any
standard flavor of Unix OS.
% cd /usr/src
% lwp-download http://www.apache.org/dist/apache_x.x.x.tar.gz
% lwp-download http://perl.apache.org/dist/mod_perl-x.xx.tar.gz
% tar xzvf apache_x.x.x.tar.gz
% tar xzvf mod_perl-x.xx.tar.gz
% cd mod_perl-x.xx
% perl Makefile.PL APACHE_SRC=../apache_x.x.x/src \
DO_HTTPD=1 USE_APACI=1 EVERYTHING=1
% make && make test && make install
% cd ../apache_x.x.x
% make install
Of course you should replace I<x.xx> and I<x.x.x> with the real
version numbers of mod_perl and Apache.
All that's left is to add a few configuration lines to C<httpd.conf>,
the Apache configuration file, start the server and enjoy mod_perl.
If you have stumbled upon a problem at any of the above steps, don't
despair, the next sections will explain in detail each and every step.
Of course there is a way of installing mod_perl in only a couple of
minutes if you are using a Linux distribution that uses RPM or deb
files:
% rpm -i apache-xx.xx.rpm
% rpm -i mod_perl-xx.xx.rpm
or
% dpkg -i apache-xx.xx.deb
% dpkg -i mod_perl-xx.xx.deb
These should set up both Apache and mod_perl correctly for your
system. Using a packaged distribution can make installing and
reinstalling a lot quicker and easier. (Note that the filenames will
vary, and I<xx.xx> will differ.)
Since mod_perl can be configured in many different ways (features can
be enabled or disabled, directories can be modified, etc.) it's
preferable to use a manual installation, as a prepackaged version
might not suit your needs. Manual installation will allow you to make
the fine tuning for the best performance as well.
In this chapter we will talk extensively about the prepackaged
versions, and ways to prepare your own packages for reuse on many
machines.
=head1 The Gory Details
We saw that the basic mod_perl installation is quite simple and takes
about 10 commands. You can copy and paste them from these pages. The
parameter C<EVERYTHING=1> selects a lot of options, but sometimes you
will need different ones. You may need to pass only specific
parameters, to bundle other components with mod_perl etc. You may
want to build mod_perl as a loadable object instead of compiling it
into Apache, so that it can be upgraded without rebuilding Apache
itself.
To accomplish this you will need to understand various techniques for
mod_perl configuration and building. You need to know what
configuration parameters are available to you and when and how to use
them.
As with Perl, with mod_perl simple things are simple. But when you
need to accomplish more complicated tasks you may have to invest some
time to gain a deeper understanding of the process. In this chapter I
will take the following route. I'll start with a detailed explanation
of the four stages of the mod_perl installation process, then continue
with the different paths each installation might take according to
your goal, followed by a few copy-and-paste real world installation
scenarios. Towards the end of the chapter I will show you various
approaches that make the installations easier, automating most of the
steps. Finally I'll cover some of the general issues that can cause
new users to stumble while installing mod_perl.
We can clearly separate the installation process into the following
stages:
=over 4
=item * Source Configuration,
=item * Building,
=item * Testing and
=item * Installation.
=back
=head2 Source Configuration (perl Makefile.PL ...)
Before building and installing mod_perl you have to configure it. You
configure mod_perl just like any other Perl module:
% perl Makefile.PL [parameters]
In this section we will go through most of the parameters mod_perl can
accept and explain each one of them.
First let's see what configuration mechanisms we have available.
Basically they all define a special set of parameters to be passed to
C<perl Makefile.PL>. Depending on the chosen configuration, the final
product might be a stand-alone httpd binary or a loadable object.
The source configuration mechanism in Apache 1.3 provides four major
features from which mod_perl can benefit:
=over 4
=item Per-module configuration scripts (ConfigStart/End)
This is a mechanism modules can use to link themselves into the
configuration process. It is useful for automatically adjusting the
configuration and build parameters from the modules sources. It is
triggered by C<ConfigStart>/C<ConfigEnd> sections inside
I<modulename>C<.module> files.
=item Apache Autoconf-style Interface (APACI)
This is the new top-level C<configure> script from Apache 1.3 which
provides a GNU Autoconf-style interface. It is useful for configuring
the source tree without manually editing any C<src/Configuration>
files. Any parameterization can be done via command line options to
the C<configure> script. Internally this is just a nifty wrapper to
the old C<src/Configure> script.
Since Apache 1.3 this is the way to install mod_perl as cleanly as
possible. Currently this is a pure Unix-based solution because at
present the complete Apache 1.3 source configuration mechanism is only
available under Unix. It doesn't work on the Win32 platform for
example.
=item B<Dynamic Shared Object (DSO) support>
Besides Windows NT support this is one of most interesting features in
Apache 1.3. Its a way to build Apache modules as so-called C<dynamic
shared objects> (usually named I<modulename>C<.so>) which can be
loaded via the C<LoadModule> directive in Apache's C<httpd.conf> file.
The benefit is that the modules are part of the C<httpd> program only
on demand, i.e. only when the user wants a module is it loaded into
the address space of the C<httpd> executable. This is interesting for
instance in relation to memory consumption and upgrading.
The DSO mechanism is provided by Apache's C<mod_so> module which needs
to be compiled into the C<httpd> binary. This is done automatically
when DSO is enabled for module C<mod_xxx> via C<configure
--enable-module=xxx> or by explicitly adding C<mod_so> via C<configure
--enable-module=so>.
=item B<APache eXtenSion (APXS) support tool>
This is a new support tool from Apache 1.3 which can be used to build
an Apache module as a DSO even B<outside> the Apache source-tree. One
can say C<APXS> is for Apache what C<MakeMaker> and C<XS> are for
Perl. It knows the platform dependent build parameters for making DSO
files and provides an easy way to run the build commands with them.
=back
Taking these four features together provides a way to integrate
mod_perl into Apache in a very clean and smooth way. I<No patching of
the Apache source tree is needed in the standard situation and in the
APXS situation not even the Apache source tree is needed>.
To benefit from the above features a new hybrid build environment was
created for the Apache side of mod_perl. The Apache-side consists of
the C source files of mod_perl which have to be compiled into the
C<httpd> program. They are usually copied to the subdirectory
C<src/modules/perl/> in the Apache source tree. To integrate this
subtree into the Apache build process a lot of adjustments were done
by mod_perl's C<Makefile.PL> in the past. And additionally the
C<Makefile.PL> controlled the Apache build process.
This approach is problematic in several ways. It is very restrictive
and not very clean because it assumes that mod_perl is the only
third-party module which has to be integrated into Apache.
The new approach described below avoids these problems. It prepares
only the C<src/modules/perl/> subtree inside the Apache source tree
I<without> adjusting or editing anything else. This way, no conflicts
can occur. Instead, mod_perl is activated later (when the Apache
source tree is configured, via APACI calls) and then it configures
itself.
We will return to each of the above configuration mechanisms when
describing different installation passes, once the overview of the
four building steps is completed.
=head3 Configuration parameters
C<perl Makefile.PL> accepts various parameters. In this section we
will learn what they are, and when should they be used.
=head4 APACHE_SRC
You will be asked the following question during the configuration
stage:
"Configure mod_perl with ../apache_x.x.x/src ?"
C<APACHE_SRC> should be used to define Apache's source tree directory.
For example:
APACHE_SRC=../apache_x.x.x/src
Unless C<APACHE_SRC> is specified, I<Makefile.PL> makes an intelligent
guess by looking at the directories at the same level as the mod_perl
sources and suggests a directory with the highest version of Apache
found there.
Answering I<'y'> confirms either I<Makefile.PL>'s guess about the
location of the tree, or the directory you have specified with
C<APACHE_SRC>.
If you use C<DO_HTTPD=1> or C<NO_HTTPD>, the first apache source tree
found or the one you have defined will be used for the rest of the
build process.
=head4 DO_HTTPD, NO_HTTPD, PREP_HTTPD
Unless any of C<DO_HTTPD>, C<NO_HTTPD> or C<PREP_HTTPD> is used, you
will be prompted by the following question:
"Shall I build httpd in ../apache_x.x.x/src for you?"
Answering I<'y'> will make sure an httpd binary will be built in
I<../apache_x.x.x/src> when you run C<make>.
To avoid this prompt when the answer is I<Yes> use:
DO_HTTPD=1
Note that if you set C<DO_HTTPD=1>, but do not use
C<APACHE_SRC=../apache_x.x.x/src> then the first apache source tree
found will be used to configure and build against.
C<PREP_HTTPD=1> just means default 'C<n>' to the second prompt,
meaning I<do not build (make) httpd in the Apache source tree>. But
it will still ask you about Apache's source location even if you have
used the C<APACHE_SRC> parameter. Providing the C<APACHE_SRC>
parameter will just eliminate the need for C<perl Makefile.PL> to make
a guess.
To avoid the two prompts and avoid building httpd, use:
NO_HTTPD=1
If you choose not to build the binary you will have to do that
manually. We will talk about it later. In any case you will need to
run C<make install> in the mod_perl source tree, so the Perl side of
mod_perl will be installed. Note that, C<make test> won't work until
you have built the server.
=head4 Callback Hooks
A callback hook (abbrev. I<callback>) is a reference to a
subroutine. In Perl we create callbacks with the S<$callback =
\&subroutine> syntax, where in this example, C<$callback> contains a
reference to the subroutine called I<"subroutine">. Callbacks are used
when we want some action (subroutine call) to occur when some event
takes place. Since we don't know exactly when the event will take
place we give the event handler a callback to the subroutine we want
executed. The handler will call our subroutine at the right time.
By default, all callback hooks except for C<PerlHandler> are turned
off. You may enable them by editing I<src/modules/perl/Makefile>, or
when running C<perl Makefile.PL>.
Possible parameters are:
PERL_POST_READ_REQUEST
PERL_TRANS
PERL_INIT
PERL_HEADER_PARSER
PERL_AUTHEN
PERL_AUTHZ
PERL_ACCESS
PERL_TYPE
PERL_FIXUP
PERL_LOG
PERL_CLEANUP
PERL_CHILD_INIT
PERL_CHILD_EXIT
PERL_DISPATCH
PERL_STACKED_HANDLERS
PERL_METHOD_HANDLERS
PERL_SECTIONS
PERL_SSI
As with any parameters that are either defined or not, use
C<PERL_hookname=1> to enable them (e.g. C<PERL_AUTHEN=1>).
To enable all callback hooks use:
ALL_HOOKS=1
=head4 EVERYTHING
To enable everything set:
EVERYTHING=1
=head4 PERL_TRACE
To enable L<debug tracing|debug/Debug_Tracing> set: C<PERL_TRACE=1>
=head4 APACHE_HEADER_INSTALL
By default, the Apache source headers files are installed into the
I<$Config{sitearchexp}/auto/Apache/include> directory.
The reason for installing the header files is to make life simpler for
module authors/users when building/installing a module that taps into
some Apache C functions, e.g. C<Embperl>, C<Apache::Peek>, etc.
If you don't wish to install these files use:
APACHE_HEADER_INSTALL=0
=head4 PERL_STATIC_EXTS
Normally, if an extension is statically linked with Perl it is listed in
C<Config.pm>'s C<$Config{static_exts}>, in which case mod_perl will
also statically link this extension with httpd. However, if an extension
is statically linked with Perl after it is installed, it is not listed in
C<Config.pm>. You may either edit C<Config.pm> and add these
extensions, or configure mod_perl like this:
perl Makefile.PL "PERL_STATIC_EXTS=Something::Static Another::One"
=head4 PERL_MARK_WHERE
Generally for C<Apache::Registry> scripts, the reported line number
for warnings and errors that end up in the I<error_log> file is not
correct. This is due to the fact that C<Apache::Registry>
auto-magically wraps the scripts running under its handler in special
code that enables the caching of the compiled scripts.
If configured with C<PERL_MARK_WHERE=1>, mod_perl will attempt to
compensate for this effect and show the exact line which triggered the
error or warning.
=head4 APACI_ARGS
When you use the C<USE_APACI=1> parameter, you can tell C<Makefile.PL>
to pass any arguments you want to the Apache C<./configure> utility,
e.g:
% perl Makefile.PL USE_APACI=1 \
APACI_ARGS='--sbindir=/usr/local/sbin/httpd_perl, \
--sysconfdir=/usr/local/etc/httpd_perl, \
--localstatedir=/usr/local/var/httpd_perl, \
--runtimedir=/usr/local/var/httpd_perl/run, \
--logfiledir=/usr/local/var/httpd_perl/logs, \
--proxycachedir=/usr/local/var/httpd_perl/proxy'
Notice that B<all> C<APACI_ARGS> (above) must be passed as one long
line if you work with C<t?csh>!!! However it works correctly as shown
above (breaking the long lines with 'C<\>') with C<(ba)?sh>. If you
use C<t?csh> it does not work, since C<t?csh> passes the C<APACI_ARGS>
arguments to C<./configure> leaving the newlines untouched, but
stripping the backslashes. This causes all the arguments except the
first to be ignored by the configuration process.
=head4 APACHE_PREFIX
If you want to use a non-default Apache installation directory, use
the C<APACHE_PREFIX> parameter, e.g.:
% perl Makefile.PL APACHE_PREFIX=/usr/local/ [...]
This should be used together with the L<APACI_ARGS|install/APACI_ARGS>
option.
=head3 Environment Variables
There are a few enviroment variables that influence the build/test
process.
=head4 APACHE_USER and APACHE_GROUP
You can use the environment variables C<APACHE_USER> and
C<APACHE_GROUP> to override the default C<User> and C<Group> settings
in the I<httpd.conf> used for S<'make test'> stage. (Introduced in
mod_perl v1.23.)
=head3 Reusing Configuration Parameters
When you have to upgrade the server, it's quite hard to remember what
parameters were used in a mod_perl build. So it's better to save them
in a file. For example if you create a file at
I<~/.mod_perl_build_options>, with contents:
APACHE_SRC=../apache_x.x.x/src DO_HTTPD=1 USE_APACI=1 \
EVERYTHING=1
You can build the server with the following command:
% perl Makefile.PL `cat ~/.mod_perl_build_options`
% make && make test && make install
But mod_perl has a standard method to perform this trick. If a file
named I<makepl_args.mod_perl> is found in the same directory as the
mod_perl build location with any of these options, it will be read in
by I<Makefile.PL>. Parameters supplied at the command line will
override the parameters given in this file.
% ls -1 /usr/src
apache_x.x.x/
makepl_args.mod_perl
mod_perl-x.xx/
% cat makepl_args.mod_perl
APACHE_SRC=../apache_x.x.x/src DO_HTTPD=1 USE_APACI=1 \
EVERYTHING=1
% cd mod_perl-x.xx
% perl Makefile.PL
% make && make test && make install
Now the parameters from I<makepl_args.mod_perl> file will be used, as
if they were directly typed in.
Notice that this file can be located in your home directory or in the
I<../> directory relative to the mod_perl distribution directory. This
file can also start with dot (I<.makepl_args.mod_perl>) so you can
keep it nicely hidden along with the rest of the dot files in your home
directory.
There is a sample I<makepl_args.mod_perl> in the I<eg/> directory of the
mod_perl distribution package, in which you might find a few options
to enable experimental features to play with too!
If you are faced with a compiled Apache and no trace of the parameters
used to build it, you can usually still find them if the sources were
not C<make clean>'d. You will find the Apache specific parameters in
C<apache_x.x.x/config.status> and the mod_perl parameters in
C<mod_perl_x.xx/apaci/mod_perl.config>.
=head3 Discovering whether some option was configured
To find out whether some parameter was included in the server, you can
take a look at the symbols inside the httpd executable with help of
C<nm> or a similar utility. For example if you want to see whether
you enabled C<PERL_AUTH=1> while building mod_perl, you do:
% nm httpd | grep perl_authenticate
But this will only work if you have an unstripped httpd binary. By
default, C<make install> strips the binary before installing it.
Another approach is to configure L</perl-status
location|debug/Apache_Status_Embedded_Inter> and run
http://localhost/perl-status?hooks to check the enabled hooks.
Yet another approach is to try to use this parameter in the
configuration file. If it wasn't enabled Apache will tell you when
you start the server, by reporting an unknown directive.
Similarly, for example, when you attempt to use C<PerlAuthenHandler>
without building Apache with the C<PERL_AUTHEN=1> parameter, Apache
will give an error message.
=head3 Using an Alternative Configuration File
By default mod_perl provides its own copy of the I<Configuration> file
to Apache's C<./configure> utility. If you wish to pass it your own
version, do this:
% perl Makefile.PL CONFIG=Configuration.custom
Where C<Configuration.custom> is the full pathname of the file
I<relative to the Apache source tree you build against>.
=head3 perl Makefile.PL Troubleshooting
=head4 "A test compilation with your Makefile configuration failed..."
When you see this during the C<perl Makefile.PL> stage:
** A test compilation with your Makefile configuration
** failed. This is most likely because your C compiler
** is not ANSI. Apache requires an ANSI C Compiler, such
** as gcc. The above error message from your compiler
** will also provide a clue.
Aborting!
you've got a problem with your compiler. It is possible that it's
improperly installed or not installed at all. Sometimes the reason is
that your Perl executable was built on a different machine, and the
software installed on your machine is not the same. Generally this
happens when you install the prebuilt packages, like RPM or deb. The
dependencies weren't properly defined in the Perl binary package and
you were allowed to install it, although some essential package is not
installed.
The most frequent pitfall is a missing gdbm library. See L<Missing or
Misconfigured libgdbm.so|install/Missing_or_Misconfigured_libgdbm> for
more info.
But why guess, when we can actually see the real error message and
understand what the real problem is. To get a real error message,
edit the Apache I<src/Configure> script. Down around line 2140 you
will see a line like this:
if ./helpers/TestCompile sanity; then
change it to:
if ./helpers/TestCompile -v sanity; then
and try again. Now you should get a useful error message.
=head4 Missing or Misconfigured libgdbm.so
On some RedHat systems you might encounter a problem during the C<perl
Makefile.PL> stage, when the installed Perl was built with the C<gdbm>
library, but the library isn't actually installed. If this is your
situation make sure you install it before proceeding with the build
process.
You can check how Perl was built by running the C<perl -V> command:
% perl -V | grep libs
On my machine I get:
libs=-lnsl -lndbm -lgdbm -ldb -ldl -lm -lc -lposix -lcrypt
Sometimes the problem is even more obscure: you do have C<libgdbm>
installed but it's not properly installed. Do this:
% ls /usr/lib/libgdbm.so*
If you get at least three lines like I do:
lrwxrwxrwx /usr/lib/libgdbm.so -> libgdbm.so.2.0.0
lrwxrwxrwx /usr/lib/libgdbm.so.2 -> libgdbm.so.2.0.0
-rw-r--r-- /usr/lib/libgdbm.so.2.0.0
you are all set. On some installations the I<libgdbm.so> symbolic link
is missing, so you get only:
lrwxrwxrwx /usr/lib/libgdbm.so.2 -> libgdbm.so.2.0.0
-rw-r--r-- /usr/lib/libgdbm.so.2.0.0
To fix this problem add the missing symbolic link:
% cd /usr/lib
% ln -s libgdbm.so.2.0.0 libgdbm.so
Now you should be able to build mod_perl without any problems.
Note that you might need to prepare this symbolic link as well:
lrwxrwxrwx /usr/lib/libgdbm.so.2 -> libgdbm.so.2.0.0
with:
% ln -s libgdbm.so.2.0.0 libgdbm.so.2
=head4 About gdbm, db and ndbm libraries
Both the gdbm and db libraries offer ndbm emulation, which is the
interface that Apache actually uses, so when you build mod_perl you
end up with whichever library was linked first by the perl compile.
If you build apache without mod_perl you end up with whatever appears
to be be your ndbm library which will vary between systems, and
especially Linux distributions. Some use gdbm - RedHat uses db but
seems to have switched to the file-incompatible 2.x version in their
6.0 release. You may have to work a bit to get both Apache and Perl
to use the same library and you are likely to have trouble copying the
dbm file from one system to another or even using it after an upgrade.
=head4 Undefined reference to `PL_perl_destruct_level'
When manually building mod_perl using the shared library:
cd mod_perl-x.xx
perl Makefile.PL PREP_HTTPD=1
make
make test
make install
cd ../apache_x.x.x
./configure --with-layout=RedHat --target=perlhttpd
--activate-module=src/modules/perl/libperl.a
you might get:
gcc -c -I./os/unix -I./include -DLINUX=2 -DTARGET=\"perlhttpd\" -DUSE_HSREGEX
-DUSE_EXPAT -I./lib/expat-lite `./apaci` buildmark.c
gcc -DLINUX=2 -DTARGET=\"perlhttpd\" -DUSE_HSREGEX -DUSE_EXPAT
-I./lib/expat-lite `./apaci` \
-o perlhttpd buildmark.o modules.o modules/perl/libperl.a
modules/standard/libstandard.a main/libmain.a ./os/unix/libos.a ap/libap.a
regex/libregex.a lib/expat-lite/libexpat.a -lm -lcrypt
modules/perl/libperl.a(mod_perl.o): In function `perl_shutdown':
mod_perl.o(.text+0xf8): undefined reference to `PL_perl_destruct_level'
mod_perl.o(.text+0x102): undefined reference to `PL_perl_destruct_level'
mod_perl.o(.text+0x10c): undefined reference to `PL_perl_destruct_level'
mod_perl.o(.text+0x13b): undefined reference to `Perl_av_undef'
[more errors snipped]
This happens when you have Perl built statically linked, with no
shared I<libperl.a>. Build a dynamically linked Perl (with
I<libperl.a>) and the problem will disappear.
=head2 mod_perl Building (make)
After completing the configuration you build the server, by calling:
% make
which compiles the source files and creates an httpd binary and/or a
separate library for each module, which can either be inserted into
the httpd binary when C<make> is called from the Apache source directory
or loaded later, at run time.
Note: don't put the mod_perl directory inside the Apache
directory. This confuses the build process.
=head3 make Troubleshooting
=head4 Undefined reference to 'Perl_newAV'
This and similar error messages may show up during the C<make>
process. Generally it happens when you have a broken Perl
installation. Make sure it's not installed from a broken RPM or
another binary package. If it is, build Perl from source or use
another properly built binary package. Run C<perl -V> to learn what
version of Perl you are using and other important details.
=head4 Unrecognized format specifier for...
From: Scott Fagg <scott.fagg@arup.com.au>
I'm using apache 1.3.9 , mod_fastcgi 2.2.2 and mod_perl 1.21
Originally my build of these three together worked, however when I
went to rebuild a few months later I recieved a lot of "unrecognized
format specifier" errors. A search of the internet showed that I
wasn't the only one but I couldn't find a solution mentioned.
Puzzled, I tried to track down the problem. Using clean source I
could build Apache/mod_perl/mod_fastcgi on my RedHat 5.2 workstation
but never on my RedHat 5.2 server.
The only tinkering I'd done with the server was to use SFIO to
rebuild Perl and get mod_fastcgi working the first time I used
FastCGI.
By removing the C<sfio> .h files, the Apache/mod_perl compile would
get further and the 'unrecognized format specifier' errors
disappeared, but naturally other pieces of code refused to compile
complaining about the missing C<sfio> files.
A quick check of the mod_fast site noted that it no longer needed
SFIO, so I removed it and replaced my rebuilt sfio-perl binaries
with clean ones (from a redhat RPM) and was able to rebuild apache
with mod_perl+mod_fastcgi (+php). All of my mod_perl stuff works and
so too does my fastcgi.
Hope that helps some one. I wasn't able to find any answers to the
problem while searching the net.
=head2 Built Server Testing (make test)
After building the server, it's a good idea to test it throughly, by
calling:
% make test
Fortunately mod_perl comes with a bunch of tests, which attempt to use
all the features you asked for at the configuration stage. If any of
the tests fails, the C<make test> stage will fail.
Running C<make test> will start a freshly built httpd on port 8529
running under the uid and gid of the C<perl Makefile.PL> process. The
httpd will be terminated when the tests are finished.
Each file in the testing suite generally includes more than one test,
but when you do the testing, the program will only report how many
tests were passed and the total number of tests defined in the test
file. However if only some of the tests in the file fail you want to know
which ones failed. To gain this information you should run the tests in
verbose mode. You can enable this mode by using the C<TEST_VERBOSE>
parameter:
% make test TEST_VERBOSE=1
To change the default port (8529) used for the test do this:
% perl Makefile.PL PORT=xxxx
To start the newly built Apache:
% make start_httpd
To shutdown Apache:
% make kill_httpd
NOTE to Ben-SSL users: httpsd does not seem to handle I</dev/null> as
the location of certain files (for example some of the configuration
files mentioned in I<httpd.conf> can be ignored by reading them from
I</dev/null>) so you'll have to change these by hand. The tests are
run with the C<SSLDisable> directive.
=head3 Manual Testing
Tests are invoked by running the C<./TEST> script located in the
I<./t> directory. Use the I<-v> option for verbose tests. You might
run an individual test like this:
% t/TEST -v modules/file.t
or all tests in a test sub-directory:
% t/TEST modules
The C<TEST> script starts the server before the test is executed. If
for some reason it fails to start, use C<make start_httpd> to start it
manually.
=head3 make test Troubleshooting
=head4 make test fails
You cannot run C<make test> before you build Apache, so if you told
C<perl Makefile.PL> not to build the httpd executable, there is no
httpd to run the test against. Go to the Apache source tree and run
C<make>, then return to the mod_perl source tree and continue with the
server testing.
=head4 mod_perl.c is incompatible with this version of Apache
If you had a stale old Apache header layout in one of the I<include>
paths during the build process you will see this message when you try
to execute httpd. Run the C<find> (or C<locate>) utility in order to
locate the file I<ap_mmn.h>. Delete it and rebuild Apache. RedHat
installed a copy of I</usr/local/include/ap_mmn.h> on my system.
For all RedHat fans, before you build Apache yourself, do:
% rpm -e apache
to remove the pre-installed RPM package first!
Debian users would do:
% dpkg -r apache
instead.
=head4 make test......skipping test on this platform
While doing C<make test> you will notice that some of the tests are
reported as I<skipped>. The reason is that you are missing some
optional modules for these test to be passed. For a hint you might
want to peek at the content of each test (you will find them all in
the C<./t> directory (mnemonic - t, tests). I'll list a few examples,
but of course things may change in the future.
modules/cookie......skipping test on this platform
Install libapreq
modules/psections...skipping test on this platform
Install C<Devel::Symdump> / C<Data::Dumper>
modules/request.....skipping test on this platform
Install libapreq (C<Apache::Request>)
modules/sandwich....skipping test on this platform
Install Apache::Sandwich
modules/stage.......skipping test on this platform
Install Apache::Stage
modules/symbol......skipping test on this platform
Install Devel::Symdump
Chances are that all of these are installed if you use C<CPAN.pm> to
C<install Bundle::Apache>.
=head4 make test Fails Due to Misconfigured localhost Entry
The C<make test> suite uses I<localhost> to run the tests that require
a network. Make sure you have this entry in I</etc/hosts>:
127.0.0.1 localhost.localdomain localhost
Also make sure that you have the loopback device [lo] configured.
[Hint: try 'ifconfig lo' to test for its existence.]
=head2 Installation (make install)
After testing the server, the last step left is to install it. First
install all the Perl side files:
% make install
Then go to the Apache source tree and complete the Apache installation
(installing the configuration files, httpd and utilities):
% cd ../apache_x.x.x
% make install
Now the installation should be considered complete. You may now
configure your server and start using it.
=head2 Building Apache and mod_perl by Hand
If you wish to build httpd separately from mod_perl, you should use
the C<NO_HTTPD=1> option during the C<perl Makefile.PL> (mod_perl
build) stage. Then you will need to configure various things by hand
and proceed to build Apache. You shouldn't run C<perl Makefile.PL>
before following the steps described in this section.
If you choose to manually build mod_perl, there are three things you
may need to set up before the build stage:
=over 4
=item mod_perl's Makefile
When C<perl Makefile.PL> is executed,
I<$APACHE_SRC/modules/perl/Makefile> may need to be modified to enable
various options (e.g. C<ALL_HOOKS=1>).
Optionally, instead of tweaking the options during C<perl Makefile.PL>
you may edit I<mod_perl-x.xx/src/modules/perl/Makefile> before running
C<perl Makefile.PL>.
=item Configuration
Add to I<apache_x.x.x/src/Configuration> :
AddModule modules/perl/libperl.a
We suggest you add this entry at the end of the I<Configuration> file
if you want your L<callback hooks|install/Callback_Hooks> to have
precedence over core handlers.
Add the following to C<EXTRA_LIBS>:
EXTRA_LIBS=`perl -MExtUtils::Embed -e ldopts`
Add the following to C<EXTRA_CFLAGS>:
EXTRA_CFLAGS=`perl -MExtUtils::Embed -e ccopts`
=item mod_perl Source Files
Return to the mod_perl directory and copy the mod_perl source files
into the apache build directory:
% cp -r src/modules/perl apache_x.x.x/src/modules/
=back
When you have done with the configuration parts, run:
% perl Makefile.PL NO_HTTPD=1 DYNAMIC=1 EVERYTHING=1\
APACHE_SRC=../apache_x.x.x/src
C<DYNAMIC=1> enables a build of the shared mod_perl library. Add
other options if required.
% make install
Now you may proceed with the plain Apache build process. Note that in
order for your changes to the I<apache_x.x.x/src/Configuration> file
to take effect, you must run C<apache_x.x.x/src/Configure> instead of
the default I<apache_x.x.x/configure> script:
% cd ../apache_x.x.x/src
% ./Configure
% make
% make install
=head1 Installation Scenarios for Standalone mod_perl
There are various ways available to build Apache with the new hybrid
build environment (using C<USE_APACI=1>):
=head2 The All-In-One Way
If your goal is just to build and install Apache with mod_perl out of
their source trees and have no special interest in further adjusting
or enhancing Apache proceed as before:
% tar xzvf apache_x.x.x.tar.gz
% tar xzvf mod_perl-x.xx.tar.gz
% cd mod_perl-x.xx
% perl Makefile.PL APACHE_SRC=../apache_x.x.x/src \
DO_HTTPD=1 USE_APACI=1 EVERYTHING=1
% make && make test && make install
% cd ../apache_x.x.x
% make install
This builds Apache statically with mod_perl, installs Apache under the
default C</usr/local/apache> tree and mod_perl into the C<site_perl>
hierarchy of your existing Perl installation. All in one step.
=head2 The Flexible Way
This is the normal situation where you want to be flexible while
building. Statically building mod_perl into the Apache binary
(C<httpd>) but via different steps, so you have a chance to include
other third-party Apache modules, etc.
=over 4
=item 1 Prepare the Apache source tree
The first step is as before, extract the distributions:
% tar xvzf apache_x.x.x.tar.gz
% tar xzvf mod_perl-x.xx.tar.gz
=item 2 Install mod_perl's Perl-side and prepare the Apache-side
The second step is to install the Perl-side of mod_perl into the Perl
hierarchy and prepare the C<src/modules/perl/> subdirectory inside the
Apache source tree:
$ cd mod_perl-x.xx
$ perl Makefile.PL \
APACHE_SRC=../apache_x.x.x/src \
NO_HTTPD=1 \
USE_APACI=1 \
PREP_HTTPD=1 \
EVERYTHING=1 \
[...]
$ make
$ make test
$ make install
$ cd ..
The C<APACHE_SRC> option sets the path to your Apache source tree, the
C<NO_HTTPD> option forces this path and only this path to be used, the
C<USE_APACI> option triggers the new hybrid build environment and the
C<PREP_HTTPD> option forces preparation of the
C<APACHE_SRC/modules/perl/> tree but no automatic build.
Then the configuration process prepares the Apache-side of mod_perl in
the Apache source tree but doesn't touch anything else in it. It then
just builds the Perl-side of mod_perl and installs it into the Perl
installation hierarchy.
B<Important:> If you use C<PREP_HTTPD> as described above, to complete
the build you must go into the Apache source directory and run C<make>
and C<make install>.
=item 3 Additionally prepare other third-party modules
Now you have a chance to prepare third-party modules. For instance
the PHP3 language can be added in a manner similar to the mod_perl
procedure.
=item 4 Build the Apache Package
Finally it's time to build the Apache package and thus also the
Apache-side of mod_perl and any other third-party modules you've
prepared:
$ cd apache_x.x.x
$ ./configure \
--prefix=/path/to/install/of/apache \
--activate-module=src/modules/perl/libperl.a \
[...]
$ make
$ make test
$ make install
The C<--prefix> option is needed if you want to change the default
target directory of the Apache installation and the
C<--activate-module> option activates mod_perl for the configuration
process and thus also for the build process. If you choose
C<--prefix=/usr/share/apache> the Apache directory tree will be
installed in I</usr/share/apache>.
The last three steps build, test and install the Apache-side of the
mod_perl enabled server. Presumably your new server includes
third-party components, otherwise you probably won't choose this
method of building.
=back
The method described above enables you to insert mod_perl into Apache
without having to mangle the Apache source tree for mod_perl. It also
gives you the freedom to add third-party modules.
=head2 Build mod_perl as a DSO inside the Apache Source Tree via APACI
B<Warning>: I<THIS IS STILL EXPERIMENTAL, SO BE WARNED!>
With Apache 1.3 there is support for building modules as Dynamic
Shared Objects (DSO). So there is support for DSO in mod_perl now,
too. Your mileage may vary. Almost certainly it will.
B<Warning>: I<YOU HAVE BEEN WARNED!>
We have already said that the new mod_perl build environment
(C<USE_APACI>) is a hybrid. What does it mean? It means for instance
that the same C<src/modules/perl/> stuff can be used to build mod_perl
as a DSO or not, without having to edit anything especially for this.
When you want to build C<libperl.so> all you have to do is to add one
single option to the above steps.
=head3 libperl.so and libperl.a
C<libmodperl.so> would be more correct for the mod_perl file, but the
name has to be C<libperl.so> because of prehistoric Apache issues.
Don't confuse the C<libperl.so> for mod_perl with the file of the same
name which comes with Perl itself. They are two different things. It
is unfortunate that they happen to have the same name.
There is also a C<libperl.a> which comes with the Perl installation.
That's different too.
You have two options here, depending on which way you have chosen
above: If you choose the All-In-One way from above then add
USE_DSO=1
to the C<perl Makefile.PL> options. If you choose the Flexible way
then add:
--enable-shared=perl
to Apache's C<./configure> options.
As you can see only an additional C<USE_DSO=1> or
C<--enable-shared=perl> option is needed. Everything else is done
automatically: C<mod_so> is automatically enabled, the Makefiles are
adjusted automatically and even the C<install> target from APACI now
additionally installs C<libperl.so> into the Apache installation tree.
And even more: the C<LoadModule> and C<AddModule> directives (which
dynamically load and insert mod_perl into httpd) are automatically
added to I<httpd.conf>.
=head2 Build mod_perl as a DSO outside the Apache Source Tree via APXS
Above we've seen how to build mod_perl as a DSO I<inside> the Apache
source tree. But there is a nifty alternative: building mod_perl as a
DSO I<outside> the Apache source tree via the new Apache 1.3 support
tool C<apxs> (APache eXtension). The advantage is obvious: you can
extend an already installed Apache with mod_perl even if you don't
have the sources (for instance, you may have installed an Apache
binary package from your vendor).
Here are the build steps:
% tar xzvf mod_perl-x.xx.tar.gz
% cd mod_perl-x.xx
% perl Makefile.PL \
USE_APXS=1 \
WITH_APXS=/path/to/bin/apxs \
EVERYTHING=1 \
[...]
% make && make test && make install
This will build the DSO C<libperl.so> I<outside> the Apache source
tree with the new Apache 1.3 support tool C<apxs> and install it into
the existing Apache hierarchy.
=head1 Installation Scenarios for mod_perl and Other Components
([ReaderMETA]: Please send more scenarios of mod_perl + other
components installation guidelines. Thanks!)
You have now seen very detailed installation instructions for specific
cases, but since mod_perl is used with many other components that plug
into Apache, you will definitely want to know how to build them
together with mod_perl.
Since all the steps are simple, and assuming that you now understand
how the build process works, I'll show only the commands to be
executed with no comments unless there is something we haven't
discussed before.
Generally every example that I'm going to show consist of:
=over 4
=item 1
downloading the source distributions of the components to be used
=item 1
un-packing them
=item 1
configuring them
=item 1
building Apache using the parameters appropriate to each component
=item 1
C<make test> and C<make install>.
=back
All these scenarios were tested on a Linux platform, you might need to
refer to the specific component's documentation if something doesn't
work for you as described below. The intention of this section is not
to show you how to install other non-mod_perl components alone, but how to
do this in a bundle with mod_perl.
Also, notice that the links I've used below are very likely to have
changed by the time you read this document. That's why I have used
the I<x.x.x> convention, instead of using hardcoded version numbers.
Remember to replace the I<x.xx> place-holders with the version numbers
of the distributions you are about to use. To find out the latest
stable version number, visit the components' sites. So if I say
http://perl.apache.org/dist/ in order to learn the version number of
the latest stable release and download the appropriate file.
Unless otherwise noted, all the components install themselves into a
default location. When you run C<make install> the installation
program tells you where it's going to install the files.
=head2 mod_perl and mod_ssl (+openssl)
mod_ssl provides strong cryptography for the Apache 1.3 webserver via
the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS
v1) protocols by the help of the Open Source SSL/TLS toolkit OpenSSL,
which is based on SSLeay from Eric A. Young and Tim J. Hudson.
Download the sources:
% lwp-download http://www.apache.org/dist/apache_x.xx.tar.gz
% lwp-download http://perl.apache.org/dist/mod_perl-x.xx.tar.gz
% lwp-download http://www.modssl.org/source/mod_ssl-x.x.x-x.x.x.tar.gz
% lwp-download http://www.openssl.org/source/openssl-x.x.x.tar.gz
Un-pack:
% tar xvzf mod_perl-x.xx
% tar xvzf apache_x.x.x.tar.gz
% tar xvzf mod_ssl-x.x.x-x.x.x.tar.gz
% tar xvzf openssl-x.x.x.tar.gz
Configure, build and install openssl:
% cd openssl-x.x.x
% ./config
% make && make test && make install
Configure:
% cd mod_ssl-x.x.x-x.x.x
% ./configure --with-apache=../apache_x.x.x
% cd ../mod_perl-x.xx
% perl Makefile.PL USE_APACI=1 EVERYTHING=1 \
DO_HTTPD=1 SSL_BASE=/usr/local/ssl \
APACHE_PREFIX=/usr/local/apachessl \
APACHE_SRC=../apache_x.x.x/src \
APACI_ARGS='--enable-module=ssl,--enable-module=rewrite'
Note: Do not forget that if you use C<csh> or C<tcsh> you may need to
put all the arguments to `perl Makefile.PL' on a single command line.
Build, test and install:
% make && make test && make install
% cd ../apache_x.x.x
% make certificate
% make install
Now proceed with the mod_ssl and mod_perl parts of the server
configuration before starting the server.
When the server starts you should see the following or similar in the
I<error_log> file:
[Fri Nov 12 16:14:11 1999] [notice] Apache/1.3.9 (Unix)
mod_perl/1.21_01-dev mod_ssl/2.4.8 OpenSSL/0.9.4 configured
-- resuming normal operations
=head2 mod_perl and mod_ssl Rolled from RPMs
As in the previous section this shows an installation of mod_perl and
mod_ssl, but this time using sources/binaries prepackaged in RPMs.
As always, replace I<xxx> with the proper version numbers. And
replace C<i386> with the identifier for your platform if it is
different.
=over
=item 1
% get apache-mod_ssl-x.x.x.x-x.x.x.src.rpm
Source: http://www.modssl.org
=item 1
% get openssl-x.x.x.i386.rpm
Source: http://www.openssl.org/
=item 1
% lwp-download http://perl.apache.org/dist/mod_perl-x.xx.tar.gz
Source: http://perl.apache.org/dist
=item 1
% lwp-download http://www.engelschall.com/sw/mm/mm-x.x.xx.tar.gz
=item 1
% rpm -ivh openssl-x.x.x.i386.rpm
=item 1
% rpm -ivh apache-mod_ssl-x.x.x.x-x.x.x.src.rpm
=item 1
% cd /usr/src/redhat/SPECS
=item 1
% rpm -bp apache-mod_ssl.spec
=item 1
% cd /usr/src/redhat/BUILD/apache-mod_ssl-x.x.x.x-x.x.x
=item 1
% tar xvzf mod_perl-x.xx.tar.gz
=item 1
% cd mod_perl-x.xx
=item 1
% perl Makefile.PL APACHE_SRC=../apache_x.x.x/src \
DO_HTTPD=1 \
USE_APACI=1 \
PREP_HTTPD=1 \
EVERYTHING=1
Add or remove parameters if appropriate.
=item 1
% make
=item 1
% make install
=item 1
% cd ../mm-x.x.xx/
=item 1
% ./configure --disable-shared
=item 1
% make
=item 1
% cd ../mod_ssl-x.x.x-x.x.x
=item 1
% ./configure \
--with-perl=/usr/bin/perl \
--with-apache=../apache_x.x.x\
--with-ssl=SYSTEM \
--with-mm=../mm-x.x.x \
--with-layout=RedHat \
--disable-rule=WANTHSREGEX \
--enable-module=all \
--enable-module=define \
--activate-module=src/modules/perl/libperl.a \
--enable-shared=max \
--disable-shared=perl
=item 1
% make
=item 1
% make certificate
with whatever option is suitable to your configuration.
=item 1
% make install
=back
You should be all set.
Note: If you use the standard config for mod_ssl don't forget to run
Apache like this:
% httpd -DSSL
=head2 mod_perl and apache-ssl (+openssl)
Apache-SSL is a secure Webserver, based on Apache and SSLeay/OpenSSL.
It is licensed under a BSD-style license which means, in short, that
you are free to use it for commercial or non-commercial purposes, so
long as you retain the copyright notices.
Download the sources:
% lwp-download http://www.apache.org/dist/apache_x.x.x.tar.gz
% lwp-download http://perl.apache.org/dist/mod_perl-x.xx.tar.gz
% lwp-download http://www.apache-ssl.org/.../apache_x.x.x+ssl_x.xx.tar.gz
% lwp-download http://www.openssl.org/source/openssl-x.x.x.tar.gz
Un-pack:
% tar xvzf mod_perl-x.xx
% tar xvzf apache_x.x.x.tar.gz
% tar xvzf openssl-x.x.x.tar.gz
Configure and install openssl:
% cd openssl-x.x.x
% ./config
% make && make test && make install
Patch Apache with SSLeay paths
% cd apache_x.xx
% tar xzvf ../apache_x.x.x+ssl_x.xx.tar.gz
% FixPatch
Do you want me to apply the fixed-up Apache-SSL patch for you? [n] y
Now edit the I<src/Configuration> file if needed and then configure:
% cd ../mod_perl-x.xx
% perl Makefile.PL USE_APACI=1 EVERYTHING=1 \
DO_HTTPD=1 SSL_BASE=/usr/local/ssl \
APACHE_SRC=../apache_x.x.x/src
Build, test and install:
% make && make test && make install
% cd ../apache_x.x.x
% make certificate
% make install
Note that you might need to modify the 'make test' stage, as it takes
much longer for this server to get started and C<make test> waits only
a few seconds for Apache to start before it times out.
Now proceed with configuration of the apache_ssl and mod_perl parts of
the server configuration files, before starting the server.
=head2 mod_perl and Stronghold
Stronghold is a secure SSL Web server for Unix which allows you to
give your web site full-strength, 128-bit encryption.
You must first build and install Stronghold without mod_perl,
following Stronghold's install procedure. For more information visit
Having done that, download the sources:
% lwp-download http://perl.apache.org/dist/mod_perl-x.xx.tar.gz
Unpack:
% tar xvzf mod_perl-x.xx.tar.gz
Configure (assuming that you have the Stronghold sources extracted at
I</usr/local/stronghold>):
% cd mod_perl-x.xx
% perl Makefile.PL APACHE_SRC=/usr/local/stronghold/src \
DO_HTTPD=1 USE_APACI=1 EVERYTHING=1
Build:
% make
Before running C<make test>, you must add your C<StrongholdKey> to
I<t/conf/httpd.conf>. If you are configuring by hand, be sure to edit
I<src/modules/perl/Makefile> and uncomment the C<#APACHE_SSL>
directive.
Test and Install:
% make test && make install
% cd /usr/local/stronghold
% make install
=head3 Note For Solaris 2.5 users
There has been a report related to the C<REGEX> library that comes
with Stronghold, that after building Apache with mod_perl it would
produce core dumps. To work around this problem, in
I<$STRONGHOLD/src/Configuration> change:
Rule WANTHSREGEX=default
to:
Rule WANTHSREGEX=no
=head2 mod_perl and Raven SSL
Note: Please consult http://www.covalent.net/support if you have
additional questions regarding Raven SSL.
=head3 Dynamic (DSO) mod_perl and Raven SSL Installation
To install Raven SSL and mod_perl dynamically:
=over
=item 1
Un-tar and un-gunzip Raven SSL and mod_perl into their respective
directories.
=item 1
% cd raven_ssl-x.x.x
Install Raven SSL and Apache via:
% ./setup --with-apache
=item 1
% cd mod_perl_x.xx
=item 1
% perl Makefile.PL USE_APXS=1 \
WITH_APXS=/usr/local/apache/bin/apxs \
EVERYTHING=1
[...]
=item 1
% make ; make install
=item 1
Move the C<LoadModule mod_perl.c> and C<Addmodule mod_perl.c> lines in
I<httpd.conf> above the C<E<lt>IfDefine SSLE<gt>> section.
=back
=head3 Static mod_perl and dynamic Raven SSL Installation
To installs Raven SSL dynamically and mod_perl statically:
=over
=item 1
Un-tar and un-gunzip Apache, Raven SSL and mod_perl into their
respective directories
=item 1
% cd raven_ssl-x.x.x
Install Raven SSL via
% ./setup
This is an example of setup scenario:
=over
=item *
Please select the directory where you want to
install Raven SSL and related packages
Directory [/usr/local] ->
Accept the default or supply a different directory.
=item *
Installing the Apache binary is the easiest
and quickest way to secure Apache with Raven SSL.
Do you want to install Apache? [Y/n] -> n
Answer C<n>, we want to install it from mod_perl sources.
=item *
Please select the directory where you want to
install Raven SSL.
Directory [/usr/local/raven] ->
Accept the default or supply a different directory.
=item *
Apache will not be installed
Raven SSL will be installed in:
/usr/local/raven
Sure, we know that :)
=item *
Do you want to proceed with installation? [Y/n] -> Y
Yes, we want to proceeed.
=item *
Now Raven completes the installation of its files.
=back
=item 1
Now it's a time to patch the Apache source with Raven.
% /usr/local/raven/bin/raven_admin_tls
select Option 1, 'Export Raven'
Note: this option exports the required EAPI patches and the needed
Raven SSL module files into your Apache source tree
=over
=item *
Choose Apache version to export to:
Available Apache versions :
(1) 1.3.12
Selection? -> 1
Choose the version you want to build Raven with.
=item *
Export Raven SSL Module to Apache source root:
Apache source root directory [] ->
Specify the Apache source root directory, e.g.:
/usr/src/apache-1.x.x
=item *
Back to the main menu:
Choose an action :
(1) Export Raven SSL
(2) Upgrade Raven SSL
(3) Exit
Selection? [1] -> 3
Choose 3 to finish.
=back
=item 1
% cd mod_perl-x.xx
=item 1
% perl Makefile.PL APACHE_PREFIX=/path/to/apache_1.x.x \
APACHE_SRC=/path/to/apache_x.x.x \
EVERYTHING=1 \
USE_APACI=1 \
PREP_HTTPD=1 \
DO_HTTPD=1
=item 1
% make ; make install
=item 1
% cd ../apache-x.x.x
=item 1
% ./configure --target=httpsd \
--enable-module=most \
--enable-shared=max \
--enable-suexec \
--suexec-logfile=logs/suexec.log \
--activate-module=src/modules/perl/libperl.a
=item 1
% make ; make install
=item 1
In the I<httpd.conf> file make sure that the S<AddModule mod_perl.c>
line is above C<E<lt>IfDefine SSLE<gt>> section.
=back
=head1 mod_perl Installation with the CPAN.pm Interactive Shell
Installation of mod_perl and all the required packages is much easier
with help of the C<CPAN.pm> module, which provides you among other
features with a shell interface to the CPAN repository. CPAN is the
Comprehensive Perl Archive Network, a repository of thousands of Perl
modules, scripts as well as a vast amount of documentation. See
http://cpan.org for more information.
The first thing first is to download the Apache source code and unpack
it into a directory -- the name of which you will need very soon.
Now execute:
% perl -MCPAN -eshell
If it's the first time that you have used it, C<CPAN.pm> will ask you
about a dozen questions to configure the module. It's quite easy to
accomplish this task, and very helpful hints come along with the
questions. When you are finished you will see the C<CPAN> prompt:
cpan>
It can be a good idea to install a special C<CPAN> bundle of modules
to make using the CPAN module easier. Installation is as simple as typing:
cpan> install Bundle::CPAN
The C<CPAN> shell can download mod_perl for you, unpack it, check for
prerequisites, detect any missing third party modules, and
download and install them. All you need to do to install mod_perl is
to type at the prompt:
cpan> install mod_perl
You will see (I'll use C<x.xx> as a placeholder for real version
numbers, since these change very frequently):
Running make for DOUGM/mod_perl-x.xx.tar.gz
Fetching with LWP:
CPAN.pm: Going to build DOUGM/mod_perl-x.xx.tar.gz
Enter `q' to stop search
Please tell me where I can find your apache src
[../apache_x.x.x/src]
C<CPAN.pm> will search for the latest Apache sources and suggest a
directory. Here, unless the CPAN shell found it and suggested the
right directory, you need to type the directory into which you
unpacked Apache. The next question is about the C<src> directory,
which resides at the root level of the unpacked Apache distribution.
In most cases the CPAN shell will suggest the correct directory.
Please tell me where I can find your apache src
[../apache_x.x.x/src]
Answer yes to all the following questions, unless you have a reason
not to do that.
Configure mod_perl with /usr/src/apache_x.x.x/src ? [y]
Shall I build httpd in /usr/src/apache_x.x.x/src for you? [y]
Now we will build Apache with mod_perl enabled. Quit the C<CPAN>
shell, or use use another terminal. Go to the Apache sources root
directory and run:
% make install
which will complete the installation by installing Apache's headers
and the binary in the appropriate directories.
The only caveat of the process I've described is that you don't have
control over the configuration process. Actually, that problem is
easy to solve -- you can tell C<CPAN.pm> to pass whatever parameters
you want to C<perl Makefile.PL>. You do this with C<o conf
makepl_arg> command:
cpan> o conf makepl_arg 'DO_HTTPD=1 USE_APACI=1 EVERYTHING=1'
Just list all the parameters as if you were passing them to the
familiar C<perl Makefile.PL>. If you add the
C<APACHE_SRC=/usr/src/apache_x.x.x/src> and C<DO_HTTPD=1> parameters,
you will not be asked a single question. Of course you must give the
correct path to the Apache source distribution.
Now proceed with C<install mod_perl> as before. When the installation
is completed, remember to unset the C<makepl_arg> variable by
executing:
cpan> o conf makepl_arg ''
If you have previously set C<makepl_arg> to some value, before you
alter it for the mod_perl installation you will probably want to save
it somewhere so that you can restore it when you have finished with the
mod_perl installation. To see the original value, use:
cpan> o conf makepl_arg
You can now install all the modules you might want to use with
mod_perl. You install them all by typing a singe command:
cpan> install Bundle::Apache
This will install mod_perl if isn't yet installed, and many other
packages such as: C<ExtUtils::Embed>, C<MIME::Base64>, C<URI::URL>,
C<Digest::MD5>, C<Net::FTP>, C<LWP>, C<HTML::TreeBuilder>, C<CGI>,
C<Devel::Symdump>, C<Apache::DB>, C<Tie::IxHash>, C<Data::Dumper>
etc.
A helpful hint: If you have a system with all the Perl modules you use
and you want to replicate them all elsewhere, and if you
cannot just copy the whole C</usr/lib/perl5> directory because of a
possible binary incompatibility on the other system, making your own
bundle is a handy solution. To accomplish this the command
C<autobundle> can be used on the CPAN shell command line. This command
writes a bundle definition file for all modules that are installed for
the currently running perl interpreter.
With the clever bundle file you can then simply say
cpan> install Bundle::my_bundle
and after answering a few questions, go out for a coffee.
=head1 Installing on multiple machines
You may wish to build httpd once, then copy it to other machines. The
Perl side of mod_perl needs the Apache headers files to compile. To
avoid dragging and build Apache on all your other machines, there are
a few Makefile targets to help you out:
% make tar_Apache
This will tar all files mod_perl installs in your Perl's I<site_perl>
directory, into a file called I<Apache.tar>. You can then unpack this
under the I<site_perl> directory on another machine.
% make offsite-tar
This will copy all the header files from the Apache source directory
which you configured mod_perl against, then it will C<make dist> which
creates a mod_perl-x.xx.tar.gz, ready to unpack on another machine to
compile and install the Perl side of mod_perl.
If you really want to make your life easy you should use one of the
more advanced packaging systems. For example, almost all Linux OS
distributions use packaging tools on top of plain tar.gz, allowing you
to track prerequisites for each package, and providing easy
installation, upgrade and cleanup. One of the most widely-used
packagers is RPM (Red Hat Package Manager). See http://www.rpm.org
for more information.
All you have to do is prepare a SRPM (source distribution package),
then build a binary release. This can be installed on any number of
machines in a matter of seconds.
It will even work on live machines! If you have two identical
machines (identical software and hardware, although depending on your
setup hardware may be less critical). Let's say that one is a live server
and the other is in development. You build an RPM with a mod_perl
binary distribution, install it on the development machine and satisfy
yourself that it is working and stable. You can then install the RPM package on
the live server without any fear. Make sure that I<httpd.conf> is correct,
since it generally includes parameters such as hostname which are unique to
the live machine.
When you have installed the package, just restart the server. It can
be a good idea to keep a package of the previous system, in case
something goes wrong. You can then easily remove the installed
package and put the old one back.
([ReaderMETA]: Dear reader, Can you please share a step by step scenario of
preparation of SRPMs for mod_perl? Thanks!!!)
=head1 using RPM, DEB and other packages to install mod_perl
[ReaderMETA]: Currently only RPM and Debian packages. Please submit
info about other available packages if you use such.
=head2 Static debian package
David Huggins-Daines has built a static Apache/mod_perl 1.3.9/1.21
Debian package.
David has hacked the Debian package to build the Apache binary,
with static mod_perl. Source and binary packages are at:
Or put this in your I</etc/apt/sources.list> and run C<"apt-get
install apache-perl">:
% deb http://elgin.plcom.on.ca/debian unstable main
Note: this server may be up and down for a bit, it's also the
development machine for David's project at work that uses mod_perl...
These aren't official debian packages, of course.
=head2 A word on mod_perl RPM packages
The virtues of RPM packages is a subject of much debate among mod_perl
users. While RPMs do take the pain away from package installation and
maintenance for most applications, the nuances of mod_perl make RPMs
somewhat less than ideal for those just getting started. The
following help and advice is for those new to mod_perl, Apache, Linux,
and RPMs. If you know what you are doing, this is probably Old Hat -
contributing your past experiences is, as always, welcomed by the
community.
=head2 Getting Started
If you are new to mod_perl and are using this Guide and the Eagle Book
to help you on your way, it is probably better to grab the latest
Apache and mod_perl sources and compile the sources yourself. Not
only will you find that this is less daunting than you suspect, but it
will probably save you a few headaches down the line for several
reasons.
First, given the pace at which the open source community produces
software, RPMs, especially those found on distribution CDs, are often
several versions out of date. The most recent version will not only
be more stable, but will likely incorporate some new functionality
that you will eventually want to play with.
It is also unlikely that the file system layout of an RPM package will
match what you see in the Eagle Book and this Guide. If you are new
to mod_perl, Apache, or both you will probably want to get familiar
with the file system layout used by the examples given here before
trying something non-standard.
Finally, the RPMs found on a typical distribution's CDs use mod_perl
built with Apache's Dynamic Shared Objects (C<DSO>) support. While
mod_perl can be successfully used as a DSO module, it adds a layer of
complexity that you may want to live without for now.
All that being said, should you still feel that rolling your own
mod_perl enabled Apache server is not likely, here are a few helpful
hints...
=head2 Compiling RPM source files
It is possible to compile the source files provided by RPM packages,
but if you are using RPMs to ease mod_perl installation, that is not
the way to do it. Both Apache and mod_perl RPMs are designed to be
install-and-go. If you really want to compile mod_perl to your own
specific needs, your best bet is to get the most recent sources from
CPAN.
=head2 Mix and Match RPM and source
It is probably not the best idea to use a self-compiled Apache with a
mod_perl RPM (or vice versa). Sticking with one format or the other
at first will result in fewer headaches and more hair.
=head2 Installing a single apache+mod_perl RPM
If you use an Apache+mod_perl RPM, chances are C<rpm -i> or C<glint>
(GUI for RPM) will have you up and running immediately, no compilation
necessary. If you encounter problems, try downloading from another
mirror site or searching http://rpmfind.net/ for a different package -
there are plenty out there to choose from.
David Harris has started an effort to build better RPM/SRPM mod_perl
packages. You will find them at:
Features of this RPM:
=over
=item *
Installs mod_perl as an "add in" to the RedHat Apache package, but
does not install mod_perl as a DSO and all the problems that brings.
=item *
Includes the four header files required for building C<libapreq>
(C<Apache::Request>)
=item *
Distributes plain text forms of the pod documentation files that come
with mod_perl.
=item *
Checks the module magic number on the existing Apache package to see
if things are compatible
=back
Notes on this un-conventional RPM packaging of mod_perl
by David Harris <dharris@drh.net> on Oct 13, 1999
This package will install the mod_perl library files on your machine
along with the following two Apache files:
/usr/lib/apache/mod_include_modperl.so
/usr/sbin/httpd_modperl
This package does not install a complete Apache subtree built with
mod_perl, but rather just the two above files that are different for
mod_perl. This conceptually thinks of mod_perl as a kind of an "add
on" that we would like to add to the regular Apache tree. However, we
are prevented from distributing mod_perl as an actual DSO, because it
is not recommended by the mod_perl developers and various features
must be turned off. So, instead, we distribute an httpd binary with
mod_perl statically linked (httpd_modperl) and the special modified
mod_include.so required for this binary (mod_include_modperl.so). You
can use the exact same configuration files and other DSO modules, but
you just "enable" the mod_perl "add on" by following the directions
below.
To enable mod_perl, do the following:
(1) Configure /etc/rc.d/init.d/httpd to run httpd_modperl instead of
httpd by changing the "daemon" command line.
(2) Replace mod_include.so with mod_include_modperl.so in the
module loading section of /etc/httpd/conf/httpd.conf
(3) Uncomment the "AddModule mod_perl.c" line in /etc/httpd/conf/httpd.conf
Or run the following command:
/usr/sbin/modperl-enable on
and to disable mod_perl:
/usr/sbin/modperl-enable off
=head2 Compiling libapreq (Apache::Request) with the RH 6.0 mod_perl RPM
Libapreq provides the L<Apache::Request|download/Apache_Request>
module.
Despite many reports of libapreq not working properly with various RPM
packages, it is possible to integrate libapreq with mod_perl RPMs. It
just requires a few additional steps.
=over
=item 1
Make certain you have the C<apache-devel-x.x.x-x.i386.rpm> package
installed. Also, download the latest version of libapreq from CPAN.
=item 2
Install the source RPM for your mod_perl RPM and then do a build prep,
(with C<rpm -bp apache-devel-x.x.x-x.src.rpm>) which unpacks the
sources. From there, copy the four header files (I<mod_perl.h>,
I<mod_perl_version.h>, I<mod_perl_xs.h>, and I<mod_PL.h>) to
C</usr/include/apache>.
=over
=item *
2.1 Get the SRPM from
C<somemirror.../redhat-x.x/SRPMS/mod_perl-x.xx-x.src.rpm>.
=item *
2.2 Install the SRPM. This creates files in C</usr/src/redhat/SPECS>
and C</usr/src/redhat/SOURCES>. Run:
% rpm -ih mod_perl-x.xx-x.src.rpm
=item *
2.3 Do a C<"prep"> build of the package, which just unpackages the
sources and applies any patches.
% rpm -bp /usr/src/redhat/SPECS/mod_perl.spec
Executing: %prep
+ umask 022
+ cd /usr/src/redhat/BUILD
+ cd /usr/src/redhat/BUILD
+ rm -rf mod_perl-1.19
+ /bin/gzip -dc /usr/src/redhat/SOURCES/mod_perl-1.19.tar.gz
+ tar -xf -
+ STATUS=0
+ [ 0 -ne 0 ]
+ cd mod_perl-1.19
++ /usr/bin/id -u
+ [ 0 = 0 ]
+ /bin/chown -Rf root .
++ /usr/bin/id -u
+ [ 0 = 0 ]
+ /bin/chgrp -Rf root .
+ /bin/chmod -Rf a+rX,g-w,o-w .
+ echo Patch #0:
Patch #0:
+ patch -p1 -b --suffix .rh -s
+ exit 0
NOTE: Steps 2.1 through 2.3 are just a fancy un-packing of the source
tree that builds the RPM into C</usr/src/redhat/BUILD/mod_perl-x.xx>.
You could unpack the C<mod_perl-x.xx.tar.gz> file somewhere and then
do the following steps on that source tree. The method shown above is
more "pure" because you're grabbing the header files from the same
tree that built the RPM. But this does not matter because RedHat is
not patching that file. So, it might be better if you just grab the
mod_perl source and unpack it to get these files. Less fuss and mess.
=item *
2.4 Look at the files you will copy: (this is not really a step, but
useful to show)
% find /usr/src/redhat/BUILD/mod_perl-1.19 -name '*.h'
/usr/src/redhat/BUILD/mod_perl-1.19/src/modules/perl/mod_perl.h
/usr/src/redhat/BUILD/mod_perl-1.19/src/modules/perl/mod_perl_xs.h
/usr/src/redhat/BUILD/mod_perl-1.19/src/modules/perl/mod_perl_version.h
/usr/src/redhat/BUILD/mod_perl-1.19/src/modules/perl/perl_PL.h
=item *
2.5 Copy the files into C</usr/include/apache>.
% find /usr/src/redhat/BUILD/mod_perl-1.19 -name '*.h' \
-exec cp {} /usr/include/apache \;
NOTE: You should not have to do:
% mkdir /usr/include/apache
because that directory should be created by apache-devel.
=back
=item 3
Apply this patch to libapreq:
=item 4
Follow the libapreq directions as usual:
% perl Makefile.PL
% make && make test && make install
=back
=head2 Installing separate Apache and mod_perl RPMs
If you are trying to install separate Apache and mod_perl RPMs, like
those provided by the RedHat distributions, you may be in for a bit of
a surprise. Installing the Apache RPM will go just fine, and
http://localhost will bring up some type of web page for you.
However, after installation of the mod_perl RPM, the L<How can I tell
whether mod_perl is running|install/How_can_I_tell_whether_mod_perl_>
test will show that Apache is not mod_perl enabled. This is because
mod_perl needs to be added as a separate module using Apache's Dynamic
Shared Objects.
To use mod_perl as a DSO, make the following modifications to your
Apache configuration files:
httpd.conf:
----------
LoadModule perl_module modules/libperl.so
AddModule mod_perl.c
PerlModule Apache::Registry
Alias /perl/ /home/httpd/perl/
<Location /perl
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader On
Options +ExecCGI
</Location
After a complete shutdown and startup of the server, mod_perl should
be up and running.
=head2 Testing the mod_perl API
Some people have reported that even when the server responds
positively to the L<How can I tell whether mod_perl is
running|install/How_can_I_tell_whether_mod_perl_> tests, the mod_perl
API will not function properly. You may want to run the following script
to verify the availability of the mod_perl API.
use strict;
my $r = shift;
$r->send_http_header('text/html');
$r->print("It worked!!!\n");
=head1 Installation Without Superuser Privileges
As you have already learned, mod_perl enabled Apache consists of two
main components: Perl modules and Apache itself. Let's tackle the
tasks one at a time.
I'll show a complete installation example using I<stas> as a username,
assuming that I</home/stas> is the home directory of that user.
=head2 Installing Perl Modules into a Directory of Choice
Since without superuser permissions you aren't allowed to install
modules into system directories like I</usr/lib/perl5>, you need to
find out how to install the modules under your home directory. It's
easy.
First you have to decide where to install the modules. The simplest
approach is to simulate the portion of the I</> file system relevant
to Perl under your home directory. Actually we need only two
directories:
/home/stas/bin
/home/stas/lib
We don't have to create them, since that will be done automatically
when the first module is installed. 99% of the files will go into the
I<lib> directory. Occasionally, when some module distribution comes
with Perl scripts, these will go into the I<bin> directory. This
directory will be created if it doesn't exist.
Let's install the I<CGI.pm> package, which includes a few other
C<CGI::*> modules. As usual, download the package from the CPAN
repository, unpack it and C<chdir> to the newly-created directory.
Now do a standard C<perl Makefile.PL> to prepare a I<Makefile>, but
this time tell C<MakeMaker> to use your Perl installation directories
instead of the defaults.
% perl Makefile.PL PREFIX=/home/stas
C<PREFIX=/home/stas> is the only part of the installation process
which is different from usual. Note that if you don't like how
C<MakeMaker> chooses the rest of the directories, or if you are using
an older version of it which requires an explicit declaration of all
the target directories, you should do this:
% perl Makefile.PL PREFIX=/home/stas \
INSTALLPRIVLIB=/home/stas/lib/perl5 \
INSTALLSCRIPT=/home/stas/bin \
INSTALLSITELIB=/home/stas/lib/perl5/site_perl \
INSTALLBIN=/home/stas/bin \
INSTALLMAN1DIR=/home/stas/lib/perl5/man \
INSTALLMAN3DIR=/home/stas/lib/perl5/man3
The rest is as usual:
% make
% make test
% make install
C<make install> installs all the files in the private repository.
Note that all the missing directories are created automatically, so
there is no need to create them in first place. Here (slightly
edited) is what it does :
Installing /home/stas/lib/perl5/CGI/Cookie.pm
Installing /home/stas/lib/perl5/CGI.pm
Installing /home/stas/lib/perl5/man3/CGI.3
Installing /home/stas/lib/perl5/man3/CGI::Cookie.3
Writing /home/stas/lib/perl5/auto/CGI/.packlist
Appending installation info to /home/stas/lib/perl5/perllocal.pod
If you have to use the explicit target parameters, instead of a single
C<PREFIX> parameter, you will find it useful to create a file called
for example I<~/.perl_dirs> (where I<~> is C</home/stas> in our
example) containing:
PREFIX=/home/stas \
INSTALLPRIVLIB=/home/stas/lib/perl5 \
INSTALLSCRIPT=/home/stas/bin \
INSTALLSITELIB=/home/stas/lib/perl5/site_perl \
INSTALLBIN=/home/stas/bin \
INSTALLMAN1DIR=/home/stas/lib/perl5/man \
INSTALLMAN3DIR=/home/stas/lib/perl5/man3
From now on, any time you want to install perl modules locally you
simply execute:
% perl Makefile.PL `cat ~/.perl_dirs`
% make
% make test
% make install
Using this method you can easily maintain several Perl module
repositories. For example, you could have one for production Perl and
another for development:
% perl Makefile.PL `cat ~/.perl_dirs.production`
or
% perl Makefile.PL `cat ~/.perl_dirs.develop`
=head2 Making Your Scripts Find the Locally Installed Modules
Perl modules are generally placed in four main directories. To find
these directories, execute:
% perl -V
The output contains important information about your Perl
installation. At the end you will see:
Characteristics of this binary (from libperl):
Built under linux
Compiled at Apr 6 1999 23:34:07
@INC:
/usr/lib/perl5/5.00503/i386-linux
/usr/lib/perl5/5.00503
/usr/lib/perl5/site_perl/5.005/i386-linux
/usr/lib/perl5/site_perl/5.005
.
It shows us the content of the Perl special variable C<@INC>, which is
used by Perl to look for its modules. It is equivalent to the C<PATH>
environment variable in Unix shells which is used to find executable
programs.
Notice that Perl looks for modules in the I<.> directory too, which
stands for the current directory. It's the last entry in the above
output.
Of course this example is from version I<5.00503> of Perl installed on
my x86 architecture PC running Linux. That's why you see
I<i386-linux> and I<5.00503>. If your system runs a different version
of Perl, operating system, processor or chipset architecture, then
some of the directories will have different names.
I also have a perl-5.6.0 installed under C</usr/local/lib/>
so when I do:
% /usr/local/bin/perl5.6.0 -V
I see:
@INC:
/usr/local/lib/perl5/5.6.0/i586-linux
/usr/local/lib/perl5/5.6.0
/usr/local/lib/site_perl/5.6.0/i586-linux
/usr/local/lib/site_perl
Note that it's still I<Linux>, but the newer Perl version uses the
version of my Pentium processor (thus the I<i586> and not I<i386>).
This makes use of compiler optimizations for Pentium processors when
the binary Perl extensions are created.
All the platform specific files, such as compiled C files glued to
Perl with C<XS> or C<SWIG>, are supposed to go into the
C<i386-linux>-like directories.
B<Important:> As we have installed the Perl modules into non-standard
directories, we have to let Perl know where to look for the four
directories. There are two ways to accomplish this. You can either
set the C<PERL5LIB> environment variable, or you can modify the
C<@INC> variable in your scripts.
Assuming that we use perl-5.00503, in our example the directories are:
/home/sbekman/lib/perl5/5.00503/i386-linux
/home/sbekman/lib/perl5/5.00503
/home/sbekman/lib/perl5/site_perl/5.005/i386-linux
/home/sbekman/lib/perl5/site_perl/5.005
As mentioned before, you find the exact directories by executing
C<perl -V> and replacing the global Perl installation's base
directory with your home directory.
Modifying C<@INC> is quite easy. The best approach is to use the
C<lib> module (pragma), by adding the following snippet at the top of
any of your scripts that require the locally installed modules.
use lib qw(/home/stas/lib/perl5/5.00503/
/home/stas/lib/perl5/site_perl/5.005);
Another way is to write code to modify C<@INC> explicitly:
BEGIN {
unshift @INC,
qw(/home/stas/lib/perl5/5.00503
/home/stas/lib/perl5/5.00503/i386-linux
/home/stas/lib/perl5/site_perl/5.005
/home/stas/lib/perl5/site_perl/5.005/i386-linux);
}
Note that with the C<lib> module we don't have to list the
corresponding architecture specific directories, since it adds them
automatically if they exist (to be exact, when I<$dir/$archname/auto>
exists).
Also, notice that both approaches I<prepend> the directories to be
searched to C<@INC>. This allows you to install a more recent module
into your local repository and Perl will use it instead of the older
one installed in the main system repository.
Both approaches modify the value of C<@INC> at compilation time. The
C<lib> module uses the I<BEGIN> block as well, but internally.
Now, let's assume the following scenario. I have installed the C<LWP>
package in my local repository. Now I want to install another module
(e.g. mod_perl) and it has C<LWP> listed in its prerequisites list. I
know that I have C<LWP> installed, but when I run C<perl Makefile.PL>
for the module I'm about to install I'm told that I don't have C<LWP>
installed.
There is no way for Perl to know that we have some locally installed
modules. All it does is search the directories listed in C<@INC>, and
since the latter contains only the default four directories (plus the
I<.> directory), it cannot find the locally installed C<LWP> package.
We cannot solve this problem by adding code to modify C<@INC>, but
changing the C<PERL5LIB> environment variable will do the trick. If
you are using C<t?csh> for interactive work, do this:
setenv PERL5LIB /home/stas/lib/perl5/5.00503:
/home/stas/lib/perl5/site_perl/5.005
It should be a single line with directories separated by colons (C<:>)
and no spaces. If you are a C<(ba)?sh> user, do this:
export PERL5LIB=/home/stas/lib/perl5/5.00503:
/home/stas/lib/perl5/site_perl/5.005
Again make it a single line. If you use bash you can use multi-line
commands by terminating split lines with a backslash (C<\>), like this:
export PERL5LIB=/home/stas/lib/perl5/5.00503:\
/home/stas/lib/perl5/site_perl/5.005
As with C<use lib>, perl automatically prepends the architecture
specific directories to C<@INC> if those exist.
When you have done this, verify the value of the newly configured
C<@INC> by executing C<perl -V> as before. You should see the
modified value of C<@INC>:
% perl -V
Characteristics of this binary (from libperl):
Built under linux
Compiled at Apr 6 1999 23:34:07
%ENV:
PERL5LIB="/home/stas/lib/perl5/5.00503:
/home/stas/lib/perl5/site_perl/5.005"
@INC:
/home/stas/lib/perl5/5.00503/i386-linux
/home/stas/lib/perl5/5.00503
/home/stas/lib/perl5/site_perl/5.005/i386-linux
/home/stas/lib/perl5/site_perl/5.005
/usr/lib/perl5/5.00503/i386-linux
/usr/lib/perl5/5.00503
/usr/lib/perl5/site_perl/5.005/i386-linux
/usr/lib/perl5/site_perl/5.005
.
When everything works as you want it to, add these commands to your
I<.tcshrc> or I<.bashrc> file. The next time you start a shell, the
environment will be ready for you to work with the new Perl.
Note that if you have a C<PERL5LIB> setting, you don't need to alter
the C<@INC> value in your scripts. But if for example someone else
(who doesn't have this setting in the shell) tries to execute your
scripts, Perl will fail to find your locally installed modules. The
best example is a crontab script that I<might> use a different SHELL
environment and therefore the C<PERL5LIB> setting won't be available
to it.
So the best approach is to have both the C<PERL5LIB> environment
variable and the explicit C<@INC> extension code at the beginning of
the scripts as described above.
=head2 The CPAN.pm Shell and Locally Installed Modules
As we saw in the section describing the usage of the C<CPAN.pm> shell
to install mod_perl, it saves a great deal of time. It does the job
for us, even detecting the missing modules listed in prerequisites,
fetching and installing them. So you might wonder whether you can use
C<CPAN.pm> to maintain your local repository as well.
When you start the C<CPAN> interactive shell, it searches first for
the user's private configuration file and then for the system wide
one. When I'm logged as user C<stas> the two files on my setup are:
/home/stas/.cpan/CPAN/MyConfig.pm
/usr/lib/perl5/5.00503/CPAN/Config.pm
If there is no C<CPAN> shell configured on your system, when you
start the shell for the first time it will ask you a dozen
configuration questions and then create the I<Config.pm> file for you.
If you've got it already system-wide configured, you should have a
C</usr/lib/perl5/5.00503/CPAN/Config.pm>. If you have a different
Perl version, alter the path to use your Perl's version number, when
looking up the file. Create the directory (C<mkdir -p> creates the
whole path at once) where the local configuration file will go:
% mkdir -p /home/stas/.cpan/CPAN
Now copy the system wide configuration file to your local one.
% cp /usr/lib/perl5/5.00503/CPAN/Config.pm \
/home/stas/.cpan/CPAN/MyConfig.pm
The only thing left is to change the base directory of I<.cpan> in
your local file to the one under your home directory. On my machine I
replace C</usr/src/.cpan> (that's where my system's C<.cpan> directory
resides) with C</home/stas>. I use Perl of course!
% perl -pi -e 's|/usr/src|/home/stas|' \
/home/stas/.cpan/CPAN/MyConfig.pm
Now you have the local configuration file ready, you have to tell it
what special parameters you need to pass when executing the C<perl
Makefile.PL> stage.
Open the file in your favorite editor and replace line:
'makepl_arg' => q[],
with:
'makepl_arg' => q[PREFIX=/home/stas],
Now you've finished the configuration. Assuming that you are logged in
as the same user you have prepared the local installation for (I<stas>
in our example), start it like this:
% perl -MCPAN -e shell
From now on any module you try to install will be installed locally.
If you need to install some system modules, just become the superuser
and install them in the same way. When you are logged in as the
superuser, the system-wide configuration file will be used instead of
your local one.
If you have used more than just the C<PREFIX> variable, modify
I<MyConfig.pm> to use them. For example if you have used these
variables:
perl Makefile.PL PREFIX=/home/stas \
INSTALLPRIVLIB=/home/stas/lib/perl5 \
INSTALLSCRIPT=/home/stas/bin \
INSTALLSITELIB=/home/stas/lib/perl5/site_perl \
INSTALLBIN=/home/stas/bin \
INSTALLMAN1DIR=/home/stas/lib/perl5/man \
INSTALLMAN3DIR=/home/stas/lib/perl5/man3
then replace C<PREFIX=/home/stas> in the line:
'makepl_arg' => q[PREFIX=/home/stas],
with all the variables from above, so that the line becomes:
'makepl_arg' => q[PREFIX=/home/stas \
INSTALLPRIVLIB=/home/stas/lib/perl5 \
INSTALLSCRIPT=/home/stas/bin \
INSTALLSITELIB=/home/stas/lib/perl5/site_perl \
INSTALLBIN=/home/stas/bin \
INSTALLMAN1DIR=/home/stas/lib/perl5/man \
INSTALLMAN3DIR=/home/stas/lib/perl5/man3],
If you arrange all the above parameters in one line, you can remove
the backslashes (C<\>).
=head2 Making a Local Apache Installation
Just like with Perl modules, if you don't have permissions to install
files into the system area you have to install them locally under your
home directory. It's almost the same as a plain installation, but you
have to run the server listening to a port number greater than 1024
since only root processes can listen to lower numbered ports.
Another important issue you have to resolve is how to add startup and
shutdown scripts to the directories used by the rest of the system
services. You will have to ask your system administrator to assist
you with this issue.
To install Apache locally, all you have to do is to tell C<.configure>
in the Apache source directory what target directories to use. If you
are following the convention that I use, which makes your home
directory look like the C</> (base) directory, the invocation
parameters would be:
./configure --prefix=/home/stas
Apache will use the prefix for the rest of its target directories
instead of the default C</usr/local/apache>. If you want to see what
they are, before you proceed add the I<--show-layout> option:
./configure --prefix=/home/stas --show-layout
You might want to put all the Apache files under C</home/stas/apache>
following Apache's convention:
./configure --prefix=/home/stas/apache
If you want to modify some or all of the names of the automatically
created directories:
./configure --prefix=/home/stas/apache \
--sbindir=/home/stas/apache/sbin
--sysconfdir=/home/stas/apache/etc
--localstatedir=/home/stas/apache/var \
--runtimedir=/home/stas/apache/var/run \
--logfiledir=/home/stas/apache/var/logs \
--proxycachedir=/home/stas/apache/var/proxy
That's all!
Also remember that you can start the script only under a user and
group you belong to. You must set the C<User> and C<Group> directives
in I<httpd.conf> to appropriate values.
=head2 Manual Local mod_perl Enabled Apache Installation
Now when we have learned how to install local Apache and Perl modules
separately, let's see how to install mod_perl enabled Apache in our
home directory. It's almost as simple as doing each one separately,
but there is one wrinkle you need to know about which I'll mention at
the end of this section.
Let's say you have unpacked the Apache and mod_perl sources under
I</home/stas/src> and they look like this:
% ls /home/stas/src
/home/stas/src/apache_x.x.x
/home/stas/src/mod_perl-x.xx
where I<x.xx> are the version numbers as usual. You want the Perl
modules from the mod_perl package to be installed under
I</home/stas/lib/perl5> and the Apache files to go under
I</home/stas/apache>. The following commands will do that for you:
% perl Makefile.PL \
PREFIX=/home/stas \
APACHE_PREFIX=/home/stas/apache \
APACHE_SRC=../apache_x.x.x/src \
DO_HTTPD=1 \
USE_APACI=1 \
EVERYTHING=1
% make && make test && make install
% cd ../apache_x.x.x
% make install
If you need some parameters to be passed to the C<.configure> script,
as we saw in the previous section use C<APACI_ARGS>. For example:
APACI_ARGS='--sbindir=/home/stas/apache/sbin, \
--sysconfdir=/home/stas/apache/etc, \
--localstatedir=/home/stas/apache/var, \
--runtimedir=/home/stas/apache/var/run, \
--logfiledir=/home/stas/apache/var/logs, \
--proxycachedir=/home/stas/apache/var/proxy'
Note that the above multiline splitting will work only with
C<(ba)?sh>, C<t?csh> users will have to list all the parameters on a
single line.
Basically the installation is complete. The only remaining problem is
the C<@INC> variable. This won't be correctly set if you rely on the
C<PERL5LIB> environment variable unless you set it explicitly in a
startup file which is C<require>'d before loading any other module
that resides in your local repository. A much nicer approach is to
use the C<lib> pragma as we saw before, but in a slightly different
way--we use it in the startup file and it affects all the code that
will be executed under mod_perl handlers. For example:
PerlRequire /home/stas/apache/perl/startup.pl
where C<startup.pl> starts with:
use lib qw(/home/stas/lib/perl5/5.00503/
/home/stas/lib/perl5/site_perl/5.005);
Note that you can still use the hard-coded C<@INC> modifications in
the scripts themselves, but be aware that scripts modify C<@INC> in
C<BEGIN> blocks and mod_perl executes the C<BEGIN> blocks only when it
performs script compilation. As a result, C<@INC> will be reset to its
original value after the scripts are compiled and the hard-coded
settings will be forgotten. See the section 'L<@INC and
mod_perl|porting/_INC_and_mod_perl>' for more information.
The only place you can alter the "original" value is during the server
configuration stage either in the startup file or by putting
PerlSetEnv Perl5LIB \
/home/stas/lib/perl5/5.00503/:/home/stas/lib/perl5/site_perl/5.005
in I<httpd.conf>, but the latter setting will be ignored if you use
the C<PerlTaintcheck> setting, and I hope you do use it.
The rest of the mod_perl configuration and use is just the same as if
you were installing mod_perl as superuser.
=head3 Resource Usage
Another important thing to keep in mind is the consumption of system
resources. mod_perl is memory hungry. If you run a lot of mod_perl
processes on a public, multiuser machine, most likely the system
administrator of this machine will ask you to use less resources and
may even shut down your mod_perl server and ask you to find another
home for it. You have a few options:
=over 4
=item *
Reduce resources usage (see L<Limiting the size of the
processes|performance/Limiting_the_Size_of_the_Process>).
=item *
Ask your ISP's system administrator whether they can setup a dedicated
machine for you, so that you will be able to install as much memory as
you need. If you get a dedicated machine the chances are that you
will want to have root access, so you may be able to manage the
administration yourself. Then you should consider keeping on the list
of the system administrator's responsibilities the following items: a
reliable electricity supply and network link. And of course making
sure that the important security patches get applied and the machine
is configured to be secure. Finally having the machine physically
protected, so no one will turn off the power or break it.
=item *
Look for another ISP with lots of resources or one that supports
mod_perl. You can find a list of these ISPs at http://perl.apache.org .
=back
=head2 Local mod_perl Enabled Apache Installation with CPAN.pm
Again, CPAN makes installation and upgrades simpler. You have seen
how to install a mod_perl enabled server using C<CPAN.pm>'s
interactive shell. You have seen how to install Perl modules and
Apache locally. Now all you have to do is to merge these techniques
into a single "local mod_perl Enabled Apache Installation with
CPAN.pm" technique.
Assuming that you have configured C<CPAN.pm> to install Perl modules
locally, the installation is very simple. Start the C<CPAN.pm> shell,
set the arguments to be passed to C<perl Makefile.PL> (modify the
example setting to suit your needs), and tell <CPAN.pm> to do the rest
for you:
% perl -MCPAN -eshell
cpan> o conf makepl_arg 'DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 \
PREFIX=/home/stas APACHE_PREFIX=/home/stas/apache'
cpan> install mod_perl
When you use C<CPAN.pm> for local installations, after the mod_perl
installation is complete you must make sure that the value of
C<makepl_arg> is restored to its original value.
The simplest way to do this is to quit the interactive shell by typing
I<quit> and reenter it. But if you insist here is how to make it work
without quitting the shell. You really want to skip this :)
If you want to continue working with C<CPAN> *without* quitting the
shell, you must:
=over 4
=item 1 remember the value of C<makepl_arg>
=item 2 change it to suit your new installation
=item 3 build and install mod_perl
=item 4 restore it after completing mod_perl installation
=back
this is quite a cumbersome task as of this writing, but I believe that
C<CPAN.pm> will eventually be improved to handle this more easily.
So if you are still with me, start the shell as usual:
% perl -MCPAN -eshell
First, read the value of the C<makepl_arg>:
cpan> o conf makepl_arg
PREFIX=/home/stas
It will be something like C<PREFIX=/home/stas> if you configured
C<CPAN.pm> to install modules locally. Save this value:
cpan> o conf makepl_arg.save PREFIX=/home/stas
Second, set a new value, to be used by the mod_perl installation
process. (You can add parameters to this line, or remove them,
according to your needs.)
cpan> o conf makepl_arg 'DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 \
PREFIX=/home/stas APACHE_PREFIX=/home/stas/apache'
Third, let <CPAN.pm> build and install mod_perl for you:
cpan> install mod_perl
Fourth, reset the original value to C<makepl_arg>. We do this by
printing the value of the saved variable and assigning it to
C<makepl_arg>.
cpan> o conf makepl_arg.save
PREFIX=/home/stas
cpan> o conf makepl_arg PREFIX=/home/stas
Not so neat, but a working solution. You could have written the value
on a piece of paper instead of saving it to C<makepl_arg.save>, but
you are more likely to make a mistake that way.
=head1 Automating installation
James G Smith wrote an Apache Builder, that can install a combination
of Apache, mod_perl, and mod_ssl -- it also has limited support for
including mod_php in the mix.
http://hex.tamu.edu/build-apache (the actual Perl script)
http://hex.tamu.edu/generic.conf (a sample configuration file)
=head1 How can I tell whether mod_perl is running?
There are a few ways. In older versions of apache ( < 1.3.6 ?) you
could check that by running C<httpd -v>, but it no longer works. Now
you should use C<httpd -l>. Please note that it is not enough to have
it installed, you have to configure it for mod_perl and restart the
server too.
=head2 Checking the error_log
When starting the server, just check the C<error_log> file for the
following message:
[Thu Dec 3 17:27:52 1998] [notice] Apache/1.3.1 (Unix) mod_perl/1.15 configured
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-- resuming normal operations
=head2 Testing by viewing /perl-status
Assuming that you have configured the S<E<lt>Location
/perl-statusE<gt>> section in the server configuration file fetch:
http://www.example.com/perl-status using your favorite Mozilla browser
:-)
You should see something like this:
Embedded Perl version 5.00503 for Apache/1.3.9 (Unix) mod_perl/1.21
process 50880, running since Mon Dec 6 14:31:45 1999
=head2 Testing via telnet
Knowing the port you have configured apache to listen on, you can use
C<telnet> to talk directly to it.
Assuming that your mod_perl enabled server listens to port 8080,
telnet to your server at port 8080, and type C<HEAD / HTTP/1.0> then
press the <ENTER> key TWICE:
% telnet localhost 8080<ENTER>
HEAD / HTTP/1.0<ENTER><ENTER>
You should see a response like this:
HTTP/1.1 200 OK
Date: Mon, 06 Dec 1999 12:27:52 GMT
Server: Apache/1.3.9 (Unix) mod_perl/1.21
Connection: close
Content-Type: text/html
Connection closed.
The line
Server: Apache/1.3.9 (Unix) mod_perl/1.21
confirms that you have mod_perl installed and its version is C<1.21>.
However, just because you have got mod_perl linked in there, that does
not mean that you have configured your server to handle Perl scripts
with mod_perl. You will find configuration assistance at
L<ModPerlConfiguration|config/>
=head2 Testing via a CGI script
Another method is to invoke a CGI script which dumps the server's
environment.
I assume that you have configured the server so that scripts running
under location I</perl/> are handled by the C<Apache::Registry>
handler and that you have the C<PerlSendHeader> directive set to
C<On>.
Copy and paste the script below (no need for a shebang line!). Let's
say you name it I<test.pl>, save it at the root of the CGI scripts and
CGI root is mapped directly to the I</perl> location of your server.
print "Content-type: text/plain\r\n\r\n";
print "Server's environment\n";
foreach ( keys %ENV ) {
print "$_\t$ENV{$_}\n";
}
Make it readable and executable by server (you may need to tune these
permissions on a public host):
% chmod a+rx test.pl
Now fetch the URL C<http://www.nowhere.com:8080/perl/test.pl> (replace
8080 with the port your mod_perl enabled server is listening to). You
should see something like this (the output has been edited):
SERVER_SOFTWARE Apache/1.3.10-dev (Unix) mod_perl/1.21_01-dev
GATEWAY_INTERFACE CGI-Perl/1.1
DOCUMENT_ROOT /home/httpd/docs
REMOTE_ADDR 127.0.0.1
[more environment variables snipped]
MOD_PERL mod_perl/1.21_01-dev
[more environment variables snipped]
If you see the that the value of C<GATEWAY_INTERFACE> is
C<CGI-Perl/1.1> everything is OK.
If there is an error you might have to add a shebang line
C<#!/usr/bin/perl> as a first line of the CGI script and then try it
again. If you see:
GATEWAY_INTERFACE CGI/1.1
it means that you have configured this location to run under mod_cgi
and not mod_perl.
Also note that there is a C<MOD_PERL> environment variable if you run
under a mod_perl handler, it's set to the release number you use.
Based on this difference you can write code like this:
BEGIN {
# perl5.004 or better is a must under mod_perl
require 5.004 if $ENV{MOD_PERL};
}
You might wonder why in the world you would need to know what handler
you are running under. Well, for example you will want to use
C<Apache::exit()> and not C<CORE::exit()> in your modules, but if you
think that your script might be used in both environments (mod_cgi and
mod_perl) you will have to override the C<exit()> subroutine and to
make decision what method to use at the runtime.
Note that if you run scripts under the C<Apache::Registry> handler, it
takes care of overriding the C<exit()> call for you, so it's not an
issue. For reasons and implementations see: L<Terminating requests
and processes, exit()
function|porting/Terminating_requests_and_process> and also L<Writing
Mod Perl scripts and Porting plain CGIs to
it|porting/>.
=head2 Testing via lwp-request
Yet another one. Why do I show all these approaches? While here they
serve a very simple purpose, they can be helpful in other situations.
Assuming you have the C<libwww-perl> (C<LWP>) package installed (you will
need it installed in order to pass mod_perl's C<make test> anyway):
% lwp-request -e -d http://www.nowhere.com
Will show you all the headers. The C<-d> option disables printing the
response content.
% lwp-request -e -d http://www.nowhere.com | egrep '^Server:'
To see the server version only.
Use C<http://www.nowhere.com:port_number> if your server is listening
to a port other than port 80.
=head1 General Notes
=head2 Is it possible to run mod_perl enabled Apache as suExec?
The answer is B<No>. The reason is that you can't I<"suid> a part of a
process. mod_perl lives inside the Apache process. You have to fork
somewhere to be someone else, and at that point, you aren't mod_perl
anymore.
You have to use mod_cgi if you need this functionality.
Another solution is to use a crontab to call some script that will
check whether there is something to do and will execute it. The
mod_perl script will be able to create and update this todo list.
=head2 Should I Rebuild mod_perl if I have Upgraded Perl?
Yes, you should. You have to rebuild the mod_perl enabled server since
it has a hard-coded C<@INC> variable. This points to the old Perl and
it is probably linked to an old C<libperl> library. If for some
reason you need to keep the old Perl version around you can modify
C<@INC> in the startup script, but it is better to build afresh to
save you getting into a mess.
=head2 Perl installation requirements
Make sure you have Perl installed! The latest stable version if
possible. Minimum perl 5.004! If you don't have it, install it.
Follow the instructions in the distribution's C<INSTALL> file.
During the configuration stage (while running C<./Configure>), to be
able to dynamically load Perl module extensions, make sure you answer
C<YES> to the question:
Do you wish to use dynamic loading? [y]
=head2 mod_auth_dbm nuances
If you are a C<mod_auth_dbm> or C<mod_auth_db> user you may need to
edit Perl's C<Config> module. When Perl is configured it attempts to
find libraries for ndbm, gdbm, db, etc., for the DB*_File modules.
By default, these libraries are linked with Perl and remembered by the
C<Config> module. When mod_perl is configured with apache, the
C<ExtUtils::Embed> module requires these libraries to be linked with
httpd so Perl extensions will work under mod_perl. However, the order
in which these libraries are stored in B<Config.pm> may confuse
C<mod_auth_db*>. If C<mod_auth_db*> does not work with mod_perl, take
a look at the order with the following command:
% perl -V:libs
Here's an example:
libs='-lnet -lnsl_s -lgdbm -lndbm -ldb -ldld -lm -lc -lndir -lcrypt';
If C<-lgdbm> or C<-ldb> is before C<-lndbm> (as it is in the example)
edit I<Config.pm> and move C<-lgdbm> and C<-ldb> to the end of the
list. Here's how to find I<Config.pm>:
% perl -MConfig -e 'print "$Config{archlibexp}/Config.pm\n"'
Under Solaris, another solution for building
Apache/mod_perl+mod_auth_dbm is to remove the DBM and NDBM "emulation"
from I<libgdbm.a>. It seems that Solaris already provides its own DBM
and NDBM, and in our installation we found there's no reason to build
GDBM with them.
In our Makefile for GDBM, we changed
OBJS = $(DBM_OF) $(NDBM_OF) $(GDBM_OF)
to
OBJS = $(GDBM_OF)
Rebuild libgdbm before Apache/mod_perl.
=head2 Stripping Apache to make it almost a Perl-server
Since most of the functionality that various apache mod_* modules
provide is implemented in the C<Apache::{*}> Perl modules, it was reported
that one can build an Apache server with mod_perl only. If you can
reduce the requirements to whatever mod_perl can handle, you can
eliminate almost every other module. Then basically you will have a
Perl-server, with C code to handle the tricky HTTP bits. The only
module you will need to leave in is C<mod_actions>.
=head2 Saving the config.status Files with mod_perl, php, ssl and Other Components
Typically, when building the bloated Apache that sits behind Squid or
whatever, you need mod_perl, php, mod_ssl and the rest. As you
install each they typically overwrite each other's C<config.status>
files. Save them after each step, so you will be able to reuse them
later.
=head2 What Compiler Should Be Used to Build mod_perl?
All Perl modules that use C extensions must be compiled using the same
compiler that your copy of Perl was built with.
When you run C<perl Makefile.PL>, a I<Makefile> is created. This
I<Makefile> includes the same compilation options that were used to
build Perl itself. They are stored in the I<Config.pm> module and can
be displayed with the C<Perl -V> command. All these options are
re-applied when compiling Perl modules.
If you use a different compiler to build Perl extensions, chances are
that the options that a different compiler uses won't be the same, or
they might be interpreted in a completely different way. So the code
either won't compile or it will dump core when run or maybe it will
behave in most unexpected ways.
Since mod_perl uses Perl, Apache and third party modules, and they all
work together, it's essential to use the same compiler while building
each of the components.
You shouldn't worry about this when compliling Perl modules since Perl
will choose what's right automatically. Unless you override things.
If you do that, you are on your own...
If you compile a non-Perl component separately, you should make sure
to use the same compiler and the same options used to build Perl.
Hint: Take a look at the I<Config.pm> module or the output of C<perl
-V>.
=head1 OS Related Notes
=over 3
=item *
Gary Shea <shea@xmission.com> discovered a nasty BSDI bug (seen in
versions 2.1 and 3.0) related to dynamic loading and found two
workarounds:
It turns out that they use C<argv[0]> to determine where to find the
link tables at run-time, so if a program either changes C<argv[0]>, or
does a chdir() (like Apache!) it can easily confuse the dynamic
loader. The short-term solutions to the problem are simple. Either
of the following will work:
1) Call httpd with a full path, e.g. /opt/www/bin/httpd
2) Put the httpd you wish to run in a directory in your PATH I<before>
any other directory containing a version of httpd, then call it as
'httpd'. Don't use a relative path!
=back
=cut