1752577 Members
5302 Online
108788 Solutions
New Discussion юеВ

NFS Share mount problem

 
Techm
New Member

NFS Share mount problem

I am having problem with mounting NFS Share. The NFS Server is on HP-UX 11.23 and the client is SUN Solaris 10. It is giving error 'nfs mount: retrying: /mbthpsharent directory on SUN where I am mounting the /export/home of HP-UX server.
5 REPLIES 5
palaniappan.sp
Regular Advisor

Re: NFS Share mount problem

Hi,

Could u post the content of NFS client and server.It will be easy for others to answer..

Redgs,
palani
Everything is Possible and Anything is Feasible if u try
Techm
New Member

Re: NFS Share mount problem

NFS Server Detail:
bash-3.1# showmount -e
export list for hp1:
/nfsTest (everyone)
bash-3.1#

NFS Client Detail:
bash-3.00# showmount -e hp1
export list for hp1:
/nfsTest (everyone)
bash-3.00#
bash-3.00# mount -F nfs hp1:/nfsTest /mbthpshare/
nfs mount: retrying: /mbthpshare

It is trying to connect to the NFS share but no luck.
anandganjihal
Advisor

Re: NFS Share mount problem

As I could see mountd is running on NFS server and imagine if client IP address verification failed on server side but if that is the case we will see messages like:

Cannot talk to mount server at reptile: RPC: Authentication error; why = Server rejected credential
Cannot talk to mount server at reptile: RPC: Timed out

So above is not the issue.

Does SUN solaris uses UDP by default??

IF that is the case then mount can fail when NFS server firewall rejects UDP connections(say if UDP ports are blocked by NFS server firewall)
palaniappan.sp
Regular Advisor

Re: NFS Share mount problem

Hi,
Instead of giving hostname on nfs server give ip address.(normally this will speed up the host resolving processes).
Configure udp protocol in server and client thru xinetd or inetd and try.But defaultly udp will be running in unix boxes.
In export list on server side give like this and try..
/nfs anon=2 or
/nfs -root=

Check these service are running in server and client 1)Portmap,rpc,Xinetd if u conigured,nfslock,nfsd.2) stop all firewall if u configured..
Check /etc/hosts,/etc/resolv.conf..

In server and client side
# ps aux | grep nfsd
If nfsd not already running, then run:
# nfsd 8 &

# ps aux | grep mountd
If mountd is not already running, then run:
# rpc.mountd -n &

regds,
palani.
Everything is Possible and Anything is Feasible if u try
Terrywcoz
New Member

Re: NFS Share mount problem

Just checking, but did you stop all nfs processes on hp1 then start them again?