Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

nfs mount not working

Status
Not open for further replies.
Jun 15, 2004
26
US
Hello All. I have two systems that I am trying to do a nfs mount in between. The first system is AIX 5.1 (sys1) and the other is AIX 5.2 (sys2). When I run the following command:
mount sys1:/tmp /mnt
it comes back with the following error:
NFS server ibm02 not responding still trying
However, I can ping and ssh between both systems. Does anyone have any idea of what the problem is? Thanks for your help.
 
Is NFS/portmapper started on the server side?

ps -ef|grep portmap
ps -ef|grep nfsd
ps -ef|grep biod
ps -ef|grep mountd
ps -ef|grep statd

use smitty nfs (go thru the menus - I don't know them by heart) to start the NFS daemons if necessary
 
I greped the above stuff and they all show up.
/usr/sbin/portmap
/usr/sbin/nfsd 3891
/usr/sbin/biod 6
/usr/sbin/rpc.mountd
/usr/sbin/rpc.statd
 
is sys1 and ibm02 just different names for the same server?

mount sys1[/color red]:/tmp /mnt
it comes back with the following error:
NFS server ibm02[/color red] not responding still trying
 
You can try this:
Telnet to the server and log in as root.

cd to the /etc directory

Enter stopsrc -g nfs.

Enter stopsrc -s portmap.

Enter rm -rf state sm sm.bak xtab rmtab.

Enter startsrc -s portmap.

Enter startsrc -g nfs.

Enter exportfs -a.

showmount -e servername
 
Sorry about the typo...ibm02 is sys1. Sys1 is the server and sys2 is the client. Another thing to add is the mount works on all of our other systems except this one. Thanks.
 
I tried everything that KHz recommended and it didn't work. Thanks though.
 
are both servers on the same network?

is there a router or sth else in between?
 
I wouldn't want to try to NFS mount thru a firewall...
 
Thanks for all your help. They are not going through a firewall and they are on the same network. We were able to do an nfs mount with upd instead of tcp (not sure if there is a downside to that). I also ended up having to call IBM and they said this is a known issue and we need to load APAR IY51942. There is a timing issue that is fixed. What is happening is the client is flooding the server with packets and the server cannot respond in time...at least that is IBMs fix.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top