For me yes. It does affect NFS since most of mine happen via automount.
Right after startup, I do these as root:
#!/bin/sh
#
# Shell script to stop/start important services
#
/etc/rc.d/init.d/autofs stop
/etc/rc.d/init.d/ypbind stop
/etc/rc.d/init.d/portmap stop
#
/etc/rc.d/init.d/portmap start
/etc/rc.d/init.d/ypbind start
/etc/rc.d/init.d/autofs start
In general, should we change the initialization sequence to fix this ?
dp
Abhinav Keswani wrote:
>
> on startup of RH6 on my laptop I see that eth0 fails...it says "Delaying
> eth0 initialisation"
>
> then the portmapper starts
>
> then the port mapper fails to mount NFS
>
> mount: RPC: Port mapper failure - RPC: unable to send
>
> and also it fails to mount other filesystems (giving the above message)
>
> then pcmcia kicks in fine because I can ping the other machine that I
> have
>
> I am wondering whether this would affect my NFS setup any (I would think
> that it would do so...)