[quote=“Tom Elliott, post: 24466, member: 7271”]This was because there was a function call that didn’t exist anymore. Corrected and you should now see a display of the files and such.
The answer to the question, as I understand it, is if you want to manage information on the NAS node, the IP information needs to be different from the FOG Server when in another group. The only issue with this is you won’t be able to Replicate images to this node because it’s no longer a part of that group. For that same reason, putting the node into the group itself won’t work, because the Management of that node is done from a totally different IP. What I’d recommend is to mount the NAS as /images on the local FOG Server. Or under another name if you need (/images) and when you create the node on the Server, you’d still use the FOG Server’s IP address.
So,
Add the NAS to mount on bootup in your fstab file. How you do it is up to you. I’m not going to write a tutorial on how to do this as there’s plenty of howto’s all over the place.
Reboot your FOG Server and verify the NAS is now mounted like a local storage place on your FOG Server.
Add the new folder as a node. The IP address for this node will then be the same as your FOG Server, not the NAS’s IP.
The Management User and Password will also be the same as your Default node.
Make your NAS the Master for that group. (If you have images on the original master, before checking that the NAS volume is master, copy the original to the NAS storage location.)[/quote]
Thank you for the reply,
I actually read all the tutorial for several weeks.
But at the system level, it is impossible to mount a share “NFS” on “/ images” folder which is itself already shared by NFS “exports” file.
[CODE][B]etc/fstab[/B]
172.16.8.43:/volume1/images /images nfs rsize=8192,wsize=8192,timeo=14,intr
[/CODE]
[CODE][B]etc/exports[/B]
/images *(ro,sync,no_wdelay,insecure_locks,no_root_squash,insecure)
/images/dev *(rw,sync,no_wdelay,no_root_squash,insecure)
[/CODE]
[CODE]
[B]sudo service nfs restart[/B]
Arrêt du dÃmon NFS : [ OK ]
Arrêt de NFS mountd : [ OK ]
Arrêt des services NFS : [ OK ]
Shutting down RPC idmapd: [ OK ]
DÃmarrage des services NFSÂ : exportfs: /images/dev does not support NFS export
exportfs: /images does not support NFS export
[ OK ]
DÃmarrage de NFS mountd : [ OK ]
DÃmarrage du dÃmon NFSÂ : [ OK ]
DÃmarrage de RPC idmapd : [ OK ]
[/CODE]