1827771 Members
2594 Online
109969 Solutions
New Discussion

Re: NFS LINUX/VMS

 
Nobody's Hero
Valued Contributor

NFS LINUX/VMS

I have a redhat 9 system. I also have an older VMS box running NFS version 2. I want the VMS box to be the NFS server and I am having trouble mounting the Linux box to it. Do I have to do something to handle the mismatch NFS versions between the two systems? One is NFS 3 and one is NFS 2.
UNIX IS GOOD
6 REPLIES 6
Alexander Chuzhoy
Honored Contributor

Re: NFS LINUX/VMS

What error do you get?
can you see the share with
showmount -e x.x.x.x

from the client where x.x.x.x is the IP address of the NFS server?
Alexander Chuzhoy
Honored Contributor

Re: NFS LINUX/VMS

if from rh9 you do this command
rpcinfo -p x.x.x.x
where x.x.x.x is the IP of nfs server what do get ? You should see the protocol and the version that nfs uses
Alexander Chuzhoy
Honored Contributor

Re: NFS LINUX/VMS

by default the client tries to mount with nfs version 2.
Otherwise you can specify other version in mount option:
nfsvers=3 (for instance)


And for the bove suggestion use:
rpcinfo -p x.x.x.x |grep nfs


to narrow the output to relevant rows...
Nobody's Hero
Valued Contributor

Re: NFS LINUX/VMS

# showmount -e ihs005
Export list for ihs005:
/DISK_PSOFT_DEV/psoft/dev/hr501 ihshp1.ihs-inc.com,ihshp2.ihs-inc.com,gregw_nt.ihs-inc.com,ihs2ktest.ihs-inc.com
/DISK_PSOFT_PROD/psoft/prod/hr501 ihshp1.ihs-inc.com,ihshp2.ihs-inc.com
/DISK_SWEEPS/sweeps techweb3.ihs-inc.com
/DISK_SWEEPS/transfer techweb3.ihs-inc.com
[root@techweb3 root]# rpcinfo -p ihs005
program vers proto port
100000 2 tcp 111 portmapper
100000 2 udp 111 portmapper
100003 2 udp 2049 nfs
100005 1 udp 10 mountd


IHS005 is the nfs server
techweb3 is the RH9 system that I am trying to mount.
UNIX IS GOOD
Huc_1
Honored Contributor

Re: NFS LINUX/VMS

How do you try to mount it on the linux and what is the error returned if any ?

Do you see error on the vms side
does a
$reply/enable=all
on the vms side

then try the mount (from linux) again and see if you get meaningfull message in the vms session ?

Maybe this will give more info on what this problem is ... if all fail's perhaps you could enable this in the audit trail on the vms side and see what this reveals.... in fact maybe you should post this also in the Openvms forum ... I have done year's of vms system management but this is also some years back and surely the vms forum will carry lots and lots more knowledge then your poor servant.

in any case keep us informed .

Jean-Pierre

Smile I will feel the difference
Alexander Chuzhoy
Honored Contributor

Re: NFS LINUX/VMS

the output show that the NFS server uses version 2 (like you said) , and UDP proto.
By default the client tries to connect with UDP and version 2.So technically you shouldn't have problems...What error message do you get if any and what is the command that you use to mount that directory....