Best Practices for mod_perl, mod_python, and mod_php
Best Practices for mod_perl, mod_python, and mod_php
am 02.04.2010 23:29:28 von The Gaijin
Hello -
I've inherited a system from our development group, and I've been
attempting to find information on recommended best practices for
running mixed mod_perl, mod_python and mod_php simultaneously on
Apache HTTPd using mod_prefork. Unfortunately, my Google-fu hasn't
produced much in the way of useful information, and I didn't find
anything specific to this on the Apache.org site.
My gut instinct is to break the installation into multiple instances,
each one servicing one of the mod_* services, but I'm hoping to
find hard information on whether or not this is correct.
Many thanks for your time,
R.
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: Best Practices for mod_perl, mod_python, and mod_php
am 03.04.2010 04:06:19 von Nilesh Govindrajan
On 04/03/10 02:59, The Gaijin wrote:
>
> Hello -
>
> I've inherited a system from our development group, and I've been
> attempting to find information on recommended best practices for
> running mixed mod_perl, mod_python and mod_php simultaneously on
> Apache HTTPd using mod_prefork. Unfortunately, my Google-fu hasn't
> produced much in the way of useful information, and I didn't find
> anything specific to this on the Apache.org site.
>
> My gut instinct is to break the installation into multiple instances,
> each one servicing one of the mod_* services, but I'm hoping to
> find hard information on whether or not this is correct.
>
> Many thanks for your time,
>
> R.
>
> ------------------------------------------------------------ ---------
> The official User-To-User support forum of the Apache HTTP Server Project.
> See for more info.
> To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
> " from the digest: users-digest-unsubscribe@httpd.apache.org
> For additional commands, e-mail: users-help@httpd.apache.org
>
I refrain from using any embedded interpreters. It doesn't give optimum
performance. Use mod_fcgid which will give you performance as well as
security since it possible to use suExec with mod_fcgid.
--
Nilesh Govindarajan
Site & Server Administrator
www.itech7.com
मà¥à¤°à¤¾ à¤à¤¾à¤°à¤¤ महान !
मम à¤à¤¾à¤°à¤¤: महतà¥à¤¤à¤® à¤à¤µà¤¤à¥ !
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org
Re: Best Practices for mod_perl, mod_python, and mod_php
am 03.04.2010 10:59:54 von Nick Kew
On 2 Apr 2010, at 22:29, The Gaijin wrote:
> I've inherited a system from our development group, and I've been
> attempting to find information on recommended best practices for
> running mixed mod_perl, mod_python and mod_php simultaneously on
> Apache HTTPd using mod_prefork. Unfortunately, my Google-fu hasn't
> produced much in the way of useful information, and I didn't find
> anything specific to this on the Apache.org site.
Why would you expect to find anything specific? There's no
recommended 'best practice' for using multiple scripting
languages and environments: you could use the modules,
or CGI/fastcgi, or proxy a backend. The only issue that arises
from using more than one together is the risk of being bitten
by some bug, but you won't know until you try.
One thing I would suggest: either compile everything yourself
or install everything from distro packages, don't mix-and-match.
The latter might put you at higher risk of linking multiple
versions of the same library.
--
Nick Kew
------------------------------------------------------------ ---------
The official User-To-User support forum of the Apache HTTP Server Project.
See for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
" from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org