1838249 Members
3785 Online
110125 Solutions
New Discussion

Weird message in syslog

 
SOLVED
Go to solution
Steve Ferrara
Advisor

Weird message in syslog

Can anyone tell me what this message means? There was only one occurence of it in the syslog. Thanks

"automount[2428]: fork a child process to delete an entry from /etc/mnttab"
3 REPLIES 3
Pete Randall
Outstanding Contributor
Solution

Re: Weird message in syslog

It's just automounter going about its business. An inactive NFS mount needed to be unmounted so automount forks a child process to clean up the entry in /etc/mnttab.


Pete

Pete
Alex Glennie
Honored Contributor

Re: Weird message in syslog

The automount message happens when the mnttab is busy and automount needs to update it. Normally the automount process does this
directly. If the mnttab is locked by another process, however, it cannot do it
right away, so, instead of waiting around for the mnttab to become available, it
forks a copy of itself to do the update as soon as the mnttab becomes available.
In this manner the main process can continue to do other work. That's it. The
message is purely informational."
Steve Ferrara
Advisor

Re: Weird message in syslog

Thanks guys!