On Wed, 18 May 2011 00:05:46 +1000, Tom Kane <t.k...@mindspring.com> wrote:

I now want to add mod_perl (in the .so form) to apache2.
[...]
I am still new in the Unix/Linux environment -- at least from the standpoint of installing systems software -- so I am sure I am missing something.

Hi Tom,

if you don't need to compile the software yourself,
and you're just starting, I would suggest an easy path:

  # Install the relevant packages
  sudo apt-get install apache2 apache2-mpm-prefork
  sudo apt-get install libapache2-mod-perl2 libapache2-mod-apreq2

  # Enable the apreq and mod perl modules
  a2enmod apreq
  a2enmod perl

  # Restart apache
  /etc/init.d/apache2 restart

--
Cosimo

Reply via email to