On 07/23/14 14:21, Chris Adams wrote:
Once upon a time, Bob Goodwin - Zuni, Virginia, USA bobgoodwin@wildblue.net said:
I've created an Centos7 VM in this updated Fedora-20 box. NFS always works without a hitch however I can't mount the server from the VM.
[root@localhost bobg]# mount 192.168.1.8:/home/bobg/ /mnt/HOME1/ mount.nfs: access denied by server while mounting 192.168.1.8:/home/bobg/
Possibly NFSv4 vs. NFSv3? RHEL/CentOS 6 and earlier (and Fedora before around 17 IIRC) default to NFSv3 mounts, while newer stuff defaults to NFSv4.
Try adding "-o nfsvers=3".
No, that's not it,
[root@localhost bobg]# mount -o nfsvers=3 192.168.1.8:/home/bobg/ /mnt/HOME1/ mount.nfs: access denied by server while mounting 192.168.1.8:/home/bobg/
But it does connect to my freenas server,
# mount 192.168.1.48:/mnt/nasdata/box48bobg /mnt/BOX48
[root@localhost BOX48]# ll total 88 drwxr-xr-x. 4 1001 root 1024 Apr 23 14:39 Apps drwxr-xr-x. 2 1001 root 512 Jul 12 10:43 AvStuff drwxr-xr-x. 2 1001 root 512 Apr 19 16:25 BookCLI drwxr-xr-x. 2 1001 root 4096 Jun 13 17:09 digicam drwxr-xr-x. 7 1001 root 512 Apr 15 18:21 gramps drwxr-xr-x. 2 1001 root 2048 Apr 23 14:40 icons drwxrwxr-x. 2 root root 512 Apr 23 14:17 notecase drwxrwxrwx. 2 1001 root 1536 Jul 19 14:19 oocalc
..... snip .......
Thanks, Bob