Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re^2: Running a daemon process as another user

by toadi (Chaplain)
on Oct 27, 2004 at 08:30 UTC ( [id://402930]=note: print w/replies, xml ) Need Help??


in reply to Re: Running a daemon process as another user
in thread Running a daemon process as another user

ok this is very strange:
use POSIX qw/setuid setsid/; BEGIN { setuid scalar getpwnam 'qf3' or die $!; # Fork. my $pidFile = '/some/path/pid'; my $pid = fork; if ($pid) # parent: save PID { open PIDFILE, ">$pidFile" or die "can't open $pidFile: $!\n"; print PIDFILE $pid; close PIDFILE; exit 0; } } print "USER: ". getpwuid($<) . "\n";

USER will be root, but when I do a ps -ef it does:

toadi 20510 1 14 04:56 pts/0 00:00:01 /usr/bin/perl /some/ +path/daemon


--
My opinions may have changed,
but not the fact that I am right

Replies are listed 'Best First'.
Re^3: Running a daemon process as another user
by Happy-the-monk (Canon) on Oct 27, 2004 at 09:06 UTC

    print "USER: ". getpwuid($<) . "\n";

    USER will be root, but when I do a ps -ef it does:

    Sure it is, because   $<   is the real uid (you used to be root).

    Use the effective uid   $>   to display the new identity. See  perlvar.

    Cheers, Sören

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://402930]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2024-04-24 11:08 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found