Firstly, if your script doesn't absolutely have to be run as root, you should ideally use a different user and using root at all from a web script is a REALLY bad idea as various nodes and FAQs will tell you).

sudo is good for this sort of thing - you can use sudo -u someuser perl foo.pl.

I also assume you have set up your sudoers file correctly? First, your webserver userneeds certain permissions, but the normal setup would mean that sudo is blindly asking for a password - and there's noone there to type it in! The sudoers config file is very flexible. You will be able to specify what you want to allow in a very fine grained way. eg. "let the user apache execute the script /usr/bin/do_script.sh without a password".

The sudo config format is, however, a bit tricky. Thankfully man sudoers gives you some examples of this sort of thing.


In reply to Re: Execute a perl program from a php web page by aufflick
in thread Execute a perl program from a php web page by Bugorr

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.