> > On one node, i can get all services to start(and they work fine), but > > whenever fail over occurs, there's nfs related handles left open thus > > inhibiting/hanging the fail over. more specifically, the file systems fails > > to unmount.
If you are referring to file systems on the server that are made available for NFS mounting that hang on unmount (it's not clear from the above if your cluster nodes are NFS servers or clients), then you need to unexport the file systems first, then you can umount them. I handled this by writing my own nfs-exports RA that basically just does an "exportfs -u" with the appropriate parameters, and used an "order" line in crm shell to make sure that the Filesystem resource is ordered before the nfs-exports resource. The nfs-exports resource will export the file system on start, and unexport it on stop. --Greg _______________________________________________ Linux-HA mailing list [email protected] http://lists.linux-ha.org/mailman/listinfo/linux-ha See also: http://linux-ha.org/ReportingProblems
