Re: Ubuntu and mod_perl

2011-05-17 Thread Cosimo Streppone
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

Ubuntu and mod_perl

2011-05-17 Thread Tom Kane
I'm still a little new at responding to mail lists. Here is an email that I sent directly in a reply to Marco. I thought that it should be shared: Marco, I had to do the following just the other day: sudo ln -sf /usr/lib/libperl.so.5.10.1 /usr/lib/libperl.so That got me over the hurdle that

Re: Ubuntu and mod_perl

2011-05-17 Thread William A. Rowe Jr.
On 5/17/2011 3:39 PM, Tom Kane wrote: I'm still a little new at responding to mail lists. Here is an email that I sent directly in a reply to Marco. I thought that it should be shared: Marco, I had to do the following just the other day: sudo ln -sf /usr/lib/libperl.so.5.10.1

Re: Ubuntu and mod_perl

2011-05-17 Thread André Warnier
Tom Kane wrote: I'm still a little new at responding to mail lists. Here is an email that I sent directly in a reply to Marco. I thought that it should be shared: Marco, I had to do the following just the other day: sudo ln -sf /usr/lib/libperl.so.5.10.1 /usr/lib/libperl.so That got me over

Re: Ubuntu and mod_perl

2011-05-17 Thread Fred Moyer
On Tue, May 17, 2011 at 2:05 PM, André Warnier a...@ice-sa.com wrote: But if your main aim is not the installation of apache and mod_perl, then I would recommend to both, to use the software packaging system of your respective flavors of Linux, to install Apache, perl and mod_perl using these

Ubuntu and mod_perl

2011-05-17 Thread Tom Kane
Thanks for all of the help. Just to let everyone know, it was embarrassing how simple it was to install mod_perl with the suggestions that I received from Cosimo Streppone earlier in the day. I didn't know that the apt-get and a2enmod steps were available as the perl.apache2.org mod_perl 2

Re: Ubuntu and mod_perl

2011-05-17 Thread Fred Moyer
On Tue, May 17, 2011 at 3:22 PM, Tom Kane t.k...@mindspring.com wrote: Now, I have another issue: I have created a startup.pl file and placed it into the conf.d directory. However, when I restart apache2 I get an error message to the effect that the first 'use' statement is a syntax error.

RE: Ubuntu and mod_perl

2011-05-17 Thread Lloyd Richardson
If you are looking to run something on apache startup: PerlRequire /path/to/startup.pl -Original Message- From: Tom Kane [mailto:t.k...@mindspring.com] Sent: Tuesday, May 17, 2011 5:23 PM To: modperl@perl.apache.org Subject: Ubuntu and mod_perl Thanks for all of the help. Just

Re: Ubuntu and mod_perl

2011-05-17 Thread André Warnier
Fred Moyer wrote: On Tue, May 17, 2011 at 3:22 PM, Tom Kane t.k...@mindspring.com wrote: Now, I have another issue: I have created a startup.pl file and placed it into the conf.d directory. However, when I restart apache2 I get an error message to the effect that the first 'use' statement is

Ubuntu and mod_perl

2011-05-17 Thread Tom Kane
I tried to incorporate suggestions I've received. After restarting apache2, this is what happened: tomkane@sfq:~$ /etc/init.d/apache2 start * Starting web server apache2 [Tue May 17 20:12:34 2011] [warn] module perl_module is already loaded, skipping (13)Permission denied: make_sock: could not

Re: Ubuntu and mod_perl

2011-05-17 Thread silent
you have compiled and installed one apache, and you made it start at boot time, you must disable it or remove it ( do not let it start at boot time ) 2011/5/18 Tom Kane t.k...@mindspring.com: I tried to incorporate suggestions I've received. After restarting apache2, this is what happened:

Re: Ubuntu and mod_perl

2011-05-17 Thread Jeff Trawick
On Tue, May 17, 2011 at 8:25 PM, silent silent2...@gmail.com wrote: you have compiled and installed one apache, and you made it start at boot time, you must disable it or remove it ( do not let it start at boot time ) 2011/5/18 Tom Kane t.k...@mindspring.com: I tried to incorporate