Quote:
Originally Posted by lurko
The obvious things to look at are /etc/exports and /etc/hosts.deny on the server, and /etc/hosts on both server and client. Some part of the setup probably says that your other machine isn't allowed to connect.
|
Thanks, yes I should have provided those values. Maybe something's amiss:
The client ip address of the pc that is problematic is 192.168.1.107
The client /etc/hosts on the pc that is problematic is:
127.0.0.1 localhost
127.0.1.1 problemclientusername-computername
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhost
The client ip address of the pc that is able to mount the share is 192.168.1.100
The client /etc/hosts on the pc that is able to mount the share is:
127.0.0.1 localhost
127.0.1.1 goodclientusername-computername
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
The server /etc/hosts.deny has the following settings:
portmap:ALL
lockd:ALL
mountd:ALL
rquotad:ALL
statd:ALL
The server /etc/hosts.allow has the following settings:
portmap:ALL
lockd:ALL
mountd:ALL
rquotad:ALL
statd:ALL
The server has a static ip of 192.168.1.5
The server /etc/hosts has the following settings:
127.0.0.1 localhost
127.0.1.1 servercomputername
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
The server /etc/exports has the following rows:
/ 192.168.1.0/255.255.255.0(rw)
/home/someuserid 192.168.1.0/255.255.255.0(rw)
/export 192.168.1.99/255.255.255.0(rw,fsid=0)
The mount command I'm using on both clients is:
sudo mount -o intr 192.168.1.5:/home/someuserid /home/someuserid/Desktop/server
When I try to umount the share that's clocking incessantly on the client I get these error rows (yes twice):
umount.nfs: /home/someuserid/Desktop/server: device is busy
umount.nfs: /home/someuserid/Desktop/server: device is busy
I have to reboot the client pc to get the mount point back to being just an empty folder on the client desktop.
Is there something in the nfs files that looks like it would deny access to the server share?