Fog upload in /images/dev (default node) instead of /home/backup/dev (other node)
-
Hello,
I have a little problem, I have fog trunk installed on a CentOS 7 x64.
I have two storage group (in same fog server, same ip) :- 1: default (/images) -> partition / is 30gb (just contains light sysprep images)
- 2: backup(/home/backup) -> partition /home is 800gb (contains capture of user’s PC)
I’ve tried to make a pc’s backup (128 gb used on disk) with fog but unfortunately I can’t (the bkp image is on backup storage group and not default)…
The upload (mac adress folder) take place in /images/dev (no enough space) instead of /home/backup/devHere some informations:
Can you help me ?
Thank you
-
What’s your
/etc/exports
file look like? -
Is there a reason why they have to be in seperate storage nodes? Or why the smaller one is the default one?
-
Hello,
[root@BS-FOG ~]# cat /etc/exports
/images *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,no_root_squash,insecure,fsid=0)
/images/dev *(rw,async,no_wdelay,no_subtree_check,no_root_squash,insecure,fsid=1)
/home/backup *(ro,sync,no_wdelay,no_subtree_check,insecure_locks,no_root_squash,insecure,fsid=0)
/home/backup/dev *(rw,async,no_wdelay,no_subtree_check,no_root_squash,insecure,fsid=1)
[root@BS-FOG ~]# -
@statoon It’s because of the
fsid
, it must be unique. you have 0, 1, 0, 1. It should be 0, 1, 2, 3. -
Thank you very much. It works like a charm