LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   ORPHAN (no passwd entry) (https://www.linuxquestions.org/questions/linux-general-1/orphan-no-passwd-entry-35338/)

markus1982 11-13-2002 01:42 AM

ORPHAN (no passwd entry)
 
Anybody knows what this is? I got it in the cron log file ...

unSpawn 11-13-2002 05:46 AM

Parent dies, child lives on.

madmaxa 07-15-2003 02:37 PM

In this case ORPHAN has nothing to do with processes!!! :tisk:

I am also getting this weird error, however I checked passwd/shadow files and those users don't exist anymore. I also deleted their entries in /var/spool/cron/<user>. Any other ideas how to get rid of these?

unSpawn 07-15-2003 04:58 PM

Restart crond, and if you use nscd, after passwd account modifications?

ezekieldas 03-24-2010 04:28 PM

This thread is really old but is in top5 of google hits so...

This will occur if there's a file in the /var/spool/cron directory
that doesn't match up to a username and UID. So if you find /var/spool/cron/bob --you must be able to 'id bob' I found this as a result of creating a backup file for root /var/spool/cron/root.20100324 (today's date). Since there is no UID for user "root.20100324' then it's considered ORPHAN.

Make sense? Here's the code --this conditional has probably not changed for years...

if (strcmp(fname, "*system*") && !(pw = getpwnam(uname))) {
/* file doesn't have a user in passwd file.
*/
log_it(fname, getpid(), "ORPHAN", "no passwd entry");
goto next_crontab;
}

chrism01 03-24-2010 08:21 PM

The other dead giveaway is when you do an ls in the dir and it shows a uid instead of a username. ls automatically grabs the username from /etc/passwd (or wherever eg ldap) if it exists.

allen@seas.wustl.edu 08-19-2010 08:57 AM

orphans, cron, ldap
 
On our centos systems, we had to restart nscd, restart cron, (in that order). Cron needs needs it's own entry to check it's self to see if it's
lost contact with the ldap server.

Allen Rueter


All times are GMT -5. The time now is 05:09 PM.