[Linux-cluster] NFS Options

Lon Hohberger lhh at redhat.com
Thu Oct 26 14:47:09 UTC 2006


On Fri, 2006-07-28 at 09:49 -0400, Bryan Cardillo wrote:
> On Fri, Jul 28, 2006 at 02:24:41PM +0200, Frank Hellmann wrote:
> > I couldn't find a reference how pass extra options into the NFS Client
> > portion of the cluster.conf, like
> > 
> > <nfsclient name="MyClient"
> > options="rw,all_squash,anonuid=500,anongid=100" target="*"/>
> 
>         [...]
> 
> > Jul 28 13:42:33 clusty2 clurgmgrd: [3906]: <err> Export Option
> > anonuid=500 invalid
> > Jul 28 13:42:33 clusty2 clurgmgrd: [3906]: <err> Export Option
> > anongid=100 invalid
> > 
> > 
> > Using either anonuid="500" or anonuid\=500 didn't work either.
> > 
> > What is the offical way of including these. Any ideas?

Very late response here, but it's because matching in anonuid/anongid is
wrong in /usr/share/cluster/nfsclient.sh:

                anonuid)
                        ;;
                anongid)
                        ;;

Should be anonuid=*) / anongid=*):

                anonuid=*)
                        ;;
                anongid=*)
                        ;;

If you have time, could you file a bugzilla?

-- Lon





More information about the Linux-cluster mailing list