Operating System - Linux
1830048 Members
22055 Online
109998 Solutions
New Discussion

Re: NFS Mount on Client Error

 
SOLVED
Go to solution
KPS
Super Advisor

NFS Mount on Client Error

Hi,

I'm trying to NFS Mount a filesystem from one server to the other. I export successfuly on the source with exportfs -a

When I get over to the client and try to mount the filesystem with:

mount :/u11 /u11

I get the following error:

mount: RPC: Unable to receive; errno = Connection refused

Can anyone tell me what this is complaining about?

Thanks in advance...

-Ken
5 REPLIES 5
Alexander Chuzhoy
Honored Contributor

Re: NFS Mount on Client Error

see if portmap service is running
service portmap status


if it's stopped you should start it with
service portmap start
KPS
Super Advisor

Re: NFS Mount on Client Error

that was already running. That wasn't the issue it appears
Alexander Chuzhoy
Honored Contributor
Solution

Re: NFS Mount on Client Error

what is the output of rcpinfo -p ?
IF you have iptables running -try to close it...


KPS
Super Advisor

Re: NFS Mount on Client Error

rpcinfo -p

program vers proto port
100000 2 tcp 111 portmapper
100000 2 udp 111 portmapper
100024 1 udp 1024 status
100024 1 tcp 32768 status
391002 2 tcp 32769 sgi_fam
100021 1 udp 1051 nlockmgr
100021 3 udp 1051 nlockmgr
100021 4 udp 1051 nlockmgr
KPS
Super Advisor

Re: NFS Mount on Client Error

I'm all set on this....

I figured out why this was happening. NFS Service wasn't started on server source.

Thanks,