Hi Everyone,
I recently did a fresh reinstall of proxmox 6, and I'm no longer able to mount an NFS export. Before the reinstall, mounting the NFS share was not an issue. The only difference between the old install and this new one, was that the old install was upgraded to proxmox 6 from 5.4. I have two proxmox servers right now both on fresh installs of proxmox 6 showing the same problem.
- I've ensured that the time is synced between proxmox and the NAS hosting the NFS share.
- The NAS is also up to date on it's firmware.
- Have tried using the nas's DNS hostname as well as the IP.
- The Proxmox server is also resolvable by DNS.
- Have tried mounting NFS using version 3 as well.
- The NAS is a Buffalo Terastation TS1400D.
- I'm able to mount the NFS share from Windows using the Windows 10 NFS client.
When trying to mount from the webui, I get one of two errors:
Connection error 596: Connection timed out
or
Connection error - Timeout.
I've also tried mounting from the command line with the following commands, all of which indefinitely hang:
mount 10.100.0.20:/mnt/array1/PVE /mnt/temp
mount -t nfs 10.100.0.20:/mnt/array1/PVE /mnt/temp
mount.nfs 10.100.0.20:/mnt/array1/PVE /mnt/temp
mount.nfs -o vers=3 10.100.0.20:/mnt/array1/PVE /mnt/temp
Also have tried going CIFS to the nas, which also fails with:
create storage failed: error with cfs lock 'file-storage_cfg': mount error: Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) (500)
I'm pretty much at my wits end here. I'm gonna try reinstalling to 5.4 to see if I get the same issue. Any thoughts?
I recently did a fresh reinstall of proxmox 6, and I'm no longer able to mount an NFS export. Before the reinstall, mounting the NFS share was not an issue. The only difference between the old install and this new one, was that the old install was upgraded to proxmox 6 from 5.4. I have two proxmox servers right now both on fresh installs of proxmox 6 showing the same problem.
- I've ensured that the time is synced between proxmox and the NAS hosting the NFS share.
- The NAS is also up to date on it's firmware.
- Have tried using the nas's DNS hostname as well as the IP.
- The Proxmox server is also resolvable by DNS.
- Have tried mounting NFS using version 3 as well.
- The NAS is a Buffalo Terastation TS1400D.
- I'm able to mount the NFS share from Windows using the Windows 10 NFS client.
When trying to mount from the webui, I get one of two errors:
Connection error 596: Connection timed out
or
Connection error - Timeout.
Code:
root@pve-01:~# rpcinfo -p 10.100.0.20
program vers proto port service
100000 4 tcp 111 portmapper
100000 3 tcp 111 portmapper
100000 2 tcp 111 portmapper
100000 4 udp 111 portmapper
100000 3 udp 111 portmapper
100000 2 udp 111 portmapper
100005 1 udp 42068 mountd
100005 1 tcp 45485 mountd
100005 2 udp 37659 mountd
100005 2 tcp 36506 mountd
100005 3 udp 57729 mountd
100005 3 tcp 60770 mountd
100024 1 udp 33748 status
100024 1 tcp 54204 status
100003 2 tcp 2049 nfs
100003 3 tcp 2049 nfs
100003 4 tcp 2049 nfs
100227 2 tcp 2049
100227 3 tcp 2049
100003 2 udp 2049 nfs
100003 3 udp 2049 nfs
100003 4 udp 2049 nfs
100227 2 udp 2049
100227 3 udp 2049
100021 1 udp 46504 nlockmgr
100021 3 udp 46504 nlockmgr
100021 4 udp 46504 nlockmgr
100021 1 tcp 32915 nlockmgr
100021 3 tcp 32915 nlockmgr
100021 4 tcp 32915 nlockmgr
Code:
root@pve-01:~# pvesm nfsscan 10.100.0.20
/mnt/array1/Data 0.0.0.0/0.0.0.0
/mnt/array1/Media 0.0.0.0/0.0.0.0
/mnt/array1/Backups 0.0.0.0/0.0.0.0
/mnt/array1/PVE 10.100.3.208,10.100.0.201,10.100.0.200
Code:
root@pve-01:~# ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: enp3s0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master vmbr0 state UP group default qlen 1000
link/ether e0:3f:49:e8:8a:ef brd ff:ff:ff:ff:ff:ff
3: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
link/ether e0:3f:49:e8:8a:ef brd ff:ff:ff:ff:ff:ff
inet 10.100.0.200/22 brd 10.100.3.255 scope global vmbr0
valid_lft forever preferred_lft forever
inet6 fe80::e23f:49ff:fee8:8aef/64 scope link
valid_lft forever preferred_lft forever
Code:
root@pve-01:~# iptables --list
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
root@pve-01:~# pve-firewall status
Status: disabled/stopped
I've also tried mounting from the command line with the following commands, all of which indefinitely hang:
mount 10.100.0.20:/mnt/array1/PVE /mnt/temp
mount -t nfs 10.100.0.20:/mnt/array1/PVE /mnt/temp
mount.nfs 10.100.0.20:/mnt/array1/PVE /mnt/temp
mount.nfs -o vers=3 10.100.0.20:/mnt/array1/PVE /mnt/temp
Also have tried going CIFS to the nas, which also fails with:
create storage failed: error with cfs lock 'file-storage_cfg': mount error: Refer to the mount.cifs(8) manual page (e.g. man mount.cifs) (500)
I'm pretty much at my wits end here. I'm gonna try reinstalling to 5.4 to see if I get the same issue. Any thoughts?
Last edited: