http://qs321.pair.com?node_id=1231478


in reply to Re: mod_perl sharing modules with other accounts when I don't want it to
in thread mod_perl sharing modules with other accounts when I don't want it to

Thanks. So are you suggesting I just put in:

PerlOptions +Clone PerlInterpStart 2 PerlInterpMax 2


Or merge it with something like:

PerlOptions +ParseHeaders +Parent PerlSwitches -Mlib=/home/steampunkcom/web/foo.co.uk/lib


Also, should the PerlOptions be in the <VirtualHost>, or <Directory> . I'm pretty sure I tried the +Clone bit, but it still seemed to have the same issue of sharing with other accounts

Thanks

Andy

Replies are listed 'Best First'.
Re^3: mod_perl sharing modules with other accounts when I don't want it to
by wazoox (Prior) on Mar 20, 2019 at 15:24 UTC

    The perl interpreter options only apply at the vhost level. As the default is "always share", I'm pretty sure you must set these options for all vhosts, too.

      Thanks - I'm pretty sure I have done that already, unless I'm missing something?

      site1: http://pastebin.com/1R2xeaxh
      site2: http://pastebin.com/LxXcsyxp

      I've made sure mod_perl isn't enabled for any of the other sites on the server, so it should just be these 2 using it.

      Thanks

      Andy
        I think I have it :) This seems to work in the <VirtualHost>

        PerlOptions +Parent PerlInterpStart 2 PerlInterpMax 2 PerlSwitches -Mlib=/home/steampunkcom/web/uk.domain.com/lib PerlRequire /home/steampunkcom/web/uk.domain.com/startup.pl # my scri +pt to auto load modules


        It seems that I also needed a server reboot (maybe it got stuck with one of the previous settings when I was testing it). So far my tests have been good :)

        Thanks for you help!