Hello everyone.
I'm trying to sync my local datastore to a "remote" NAS, which is also added as a datastore BUT as a nfs-share. (don't pull out the pitchforks please)
I have already a sync up and running to another NAS which works alright.
The /mnt/bk-nas-rotate is not really doing anything when the sync job starts. It is not even possible to stop the sync job after starting it.
Writing to the mount is possible and speedwise okay-ish:
to compare it with the other NFS share (which is nfs 4.1):
Here is my /etc/fstab:
Any ideas where to look? When doing a df -h even after hours nothing has been written to the NAS so I guess the sync does not even start?
First initializing the NAS (writing of .chunks) took almost 24hrs..
Thanks in advance.
Greetings
I'm trying to sync my local datastore to a "remote" NAS, which is also added as a datastore BUT as a nfs-share. (don't pull out the pitchforks please)
I have already a sync up and running to another NAS which works alright.
Code:
/mnt/bk-nas-rotate from 192.168.207.199:/mnt/array1/BACKUP
Flags: rw,relatime,vers=3,rsize=524288,wsize=524288,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,mountaddr=192.168.207.199,mountvers=3,mountport=2049,mountproto=udp,local_lock=none,addr=192.168.207.199
/mnt/bk-nas-01 from 192.168.200.185:/BACKUP
Flags: rw,relatime,vers=4.1,rsize=131072,wsize=131072,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=192.168.200.143,local_lock=none,addr=192.168.200.185
The /mnt/bk-nas-rotate is not really doing anything when the sync job starts. It is not even possible to stop the sync job after starting it.
Code:
This is the sync jobs output:
2024-10-15T22:40:00+02:00: Starting datastore sync job '-:pbs-local:BK-NAS-ROTATE:PMX-HOST-01:s-a0e12d1d-9ed4'
2024-10-15T22:40:00+02:00: task triggered by schedule 'hourly'
2024-10-15T22:40:00+02:00: sync datastore 'BK-NAS-ROTATE' from 'pbs-local'
2024-10-15T22:47:52+02:00: received abort request ...
Writing to the mount is possible and speedwise okay-ish:
Code:
root@PMX-BACKUP-01:~# dd if=/dev/zero of=/mnt/bk-nas-rotate/test bs=1M count=100 status=progress
100+0 records in
100+0 records out
104857600 bytes (105 MB, 100 MiB) copied, 2.8445 s, 36.9 MB/s
to compare it with the other NFS share (which is nfs 4.1):
Code:
root@PMX-BACKUP-01:~# dd if=/dev/zero of=/mnt/bk-nas-01/test bs=1M count=100 status=progress
100+0 records in
100+0 records out
104857600 bytes (105 MB, 100 MiB) copied, 1.60522 s, 65.3 MB/s
Here is my /etc/fstab:
Code:
root@PMX-BACKUP-01:~# cat /etc/fstab
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/pbs/root / ext4 errors=remount-ro 0 1
/dev/pbs/swap none swap sw 0 0
proc /proc proc defaults 0 0
# NAS 1
192.168.200.185:/BACKUP /mnt/bk-nas-01 nfs nfsvers=4,minorversion=1,rw 0 0
# NAS 2 - COLD STORAGE/WEEKLY
192.168.207.199:/mnt/array1/BACKUP /mnt/bk-nas-rotate nfs rw,vers=3 0 0
Any ideas where to look? When doing a df -h even after hours nothing has been written to the NAS so I guess the sync does not even start?
First initializing the NAS (writing of .chunks) took almost 24hrs..
Thanks in advance.
Greetings