I try to mount a directory from laptop one to laptop two. Both are running Leap 42.1.
I have - trough Yast - exported the directory on one, to the whole internal network, and when that didn’t give a working connection, to be sure also the wlan and cabled adresses of the client
Enabled client NFS on two, also with Yast
I have disabled both firewalls, just to be sure. Set noauto in fstab of the client for the share. So fstab shows:
cat /etc/fstab
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 / btrfs defaults 0 0
UUID=90c01e40-75e6-415e-b62d-0c3064713bfb /home ext4 acl,user_xattr 1 2
UUID=8cee7ba3-b636-4e24-a381-4e94ee25503e swap swap defaults 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /boot/grub2/i386-pc btrfs subvol=@/boot/grub2/i386-pc 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /boot/grub2/x86_64-efi btrfs subvol=@/boot/grub2/x86_64-efi 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /opt btrfs subvol=@/opt 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /srv btrfs subvol=@/srv 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /tmp btrfs subvol=@/tmp 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /usr/local btrfs subvol=@/usr/local 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/crash btrfs subvol=@/var/crash 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/lib/libvirt/images btrfs subvol=@/var/lib/libvirt/images 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/lib/mailman btrfs subvol=@/var/lib/mailman 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/lib/mariadb btrfs subvol=@/var/lib/mariadb 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/lib/mysql btrfs subvol=@/var/lib/mysql 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/lib/named btrfs subvol=@/var/lib/named 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/lib/pgsql btrfs subvol=@/var/lib/pgsql 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/log btrfs subvol=@/var/log 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/opt btrfs subvol=@/var/opt 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/spool btrfs subvol=@/var/spool 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /var/tmp btrfs subvol=@/var/tmp 0 0
UUID=2ba144e1-3817-4b39-87da-afb2037103f6 /.snapshots btrfs subvol=@/.snapshots 0 0
UUID=4023-25CF /boot/efi vfat umask=0002,utf8=true 0 0
192.168.2.19:/home/baukje /mnt/home-baukje nfs defaults,noauto 0 0
When I try to mount manually, I get
mount -v /mnt/home-baukje
mount.nfs: timeout set for Fri Sep 2 11:47:00 2016
mount.nfs: trying text-based options 'vers=4,addr=192.168.2.19,clientaddr=192.168.2.18'
mount.nfs: mount(2): Connection refused
mount.nfs: trying text-based options 'addr=192.168.2.19'
mount.nfs: prog 100003, trying vers=3, prot=6
mount.nfs: trying 192.168.2.19 prog 100003 vers 3 prot TCP port 2049
mount.nfs: portmap query failed: RPC: Remote system error - Connection refused
mount.nfs: trying text-based options 'vers=4,addr=192.168.2.19,clientaddr=192.168.2.18'
mount.nfs: mount(2): Connection refused
mount.nfs: trying text-based options 'addr=192.168.2.19'
mount.nfs: prog 100003, trying vers=3, prot=6
mount.nfs: trying 192.168.2.19 prog 100003 vers 3 prot TCP port 2049
mount.nfs: portmap query failed: RPC: Remote system error - Connection refused
mount.nfs: trying text-based options 'vers=4,addr=192.168.2.19,clientaddr=192.168.2.18'
mount.nfs: mount(2): Connection refused
running forever.
rpcinfo gives
rpcinfo -u 192.168.2.19 mountd
192.168.2.19: RPC: Program not registered
192.168.2.19 being the server.
I read some issues with google, but quite old, and no real solution which helps me out.
Any ideas? Further questions?