Installing Apache with mod_perl (centos)
Her nede kan I se instruksene på hvordan man kan installere apache med mod_perl.På disse instrukser man har ikke apache og mod_perl installert på forhånd, men det har jeg, i min centos server har jeg allerede apache og mod_perl, så spørsmålet er hvordan kan jeg åpnå det samme de ønsker her nede?
Installing Apache with mod_perl (Linux), or IIS (Windows)
Linux:
Apache can be downloaded from http://httpd.apache.org/.
mod_perl can be downloaded from http://perl.apache.org/
The versions of Apache and mod_perl that ship with Red Hat 6.2 and 7.1 have been extensively tested with the Metadot product and work fine. If you are working on a Red Hat (or Red Hat-derived) Linux distribution, the RPM versions of these applications can be used without having to compile and install them by hand.
We recommend installing Apache with mod_perl as a DSO. To do this, extract Apache and mod_perl. change to the extracted mod_perl directory and do the following commands :
$bash mod_perl-x.xx > perl Makefile.PL APACHE_SRC=../apache_x.x.x/src \
DO_HTTPD=1 USE_APACI=1 EVERYTHING=1 USE_DSO=1
$bash mod_perl-x.xx > make
$bash mod_perl-x.xx > make test
$bash mod_perl-x.xx > make install
$bash mod_perl-x.xx > cd ../apache_x.x.x
$bash mod_perl-x.xx > make install
apache_x.x.x is the extracted apache directory.
"$bash mod_perl-x.xx>" is a representation of the prompt and is not part of the command.