diff options
author | Shehjar Tikoo <shehjart@gluster.com> | 2010-11-03 06:35:29 +0000 |
---|---|---|
committer | Anand V. Avati <avati@dev.gluster.com> | 2010-11-03 21:36:59 -0700 |
commit | 86a1ef81527da5b9eb11ba3dc361c1c4ca291ca8 (patch) | |
tree | 216d0952a21a446e6e68bc051ff4ad81027801d8 /xlators/nfs/server/src/nfs.c | |
parent | b16c0784da56fc2e7d660753882ec63587e2049e (diff) |
nfs: Introduce rpc.register-with-portmap to disable portmap registration
For systems that need to run multiple nfs servers, we need to prevent
more than one from registering with portmap service. Use this option
to turn off portmap registration for Gluster NFS.
Portmap registration is on by default.
Signed-off-by: Shehjar Tikoo <shehjart@gluster.com>
Signed-off-by: Anand V. Avati <avati@dev.gluster.com>
BUG: 1743 (XenServer is not compatible with GlusterNFS)
URL: http://bugs.gluster.com/cgi-bin/bugzilla3/show_bug.cgi?id=1743
Diffstat (limited to 'xlators/nfs/server/src/nfs.c')
-rw-r--r-- | xlators/nfs/server/src/nfs.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/xlators/nfs/server/src/nfs.c b/xlators/nfs/server/src/nfs.c index d546ed3fb14..3dbb0bc456c 100644 --- a/xlators/nfs/server/src/nfs.c +++ b/xlators/nfs/server/src/nfs.c @@ -858,6 +858,13 @@ struct volume_options options[] = { "32-bit inode numbers instead. Disabled by default so " "NFS returns 64-bit inode numbers by default." }, + { .key = {"rpc.register-with-portmap"}, + .type = GF_OPTION_TYPE_BOOL, + .description = "For systems that need to run multiple nfs servers, we" + "need to prevent more than one from registering with " + "portmap service. Use this option to turn off portmap " + "registration for Gluster NFS. On by default" + }, { .key = {NULL} }, }; |