I can’t help you with the fogstorage node issue, but I can with the space issue.
Actuality what I’m going to recommend will sound counter intuitive, but its the right move. Traditionally with *nix systems you place the /home and /opt directories on their own partitions/disks. These two partitions could potentially grow out of control filling up the root partitions ( / ) basically killing the *nix systems.
What I’m going to recommend is that you do the following.
- Create a new VMDK file for your storage drive
- Create a filesystem on that vmdk and mount it on /mnt/itemp
- Stop FOG and all of its services
- Move the contents of the /opt directory to /mnt/itemp
- At this time /opt will be empty with the contents not under /mnt/itmp
- Now unmount /mnt/itmp and mount that new vmdk on /opt (this will restore the contents of /opt but the files will now be on the new vmdk
- Now for the last bit. Make a directory under /opt/fog called images
- move the content of /images to /opt/fog/images (this will place all of your big files on this new vmdk file
- Now that all of the contents are in /opt/fog/images delete the /images folder and create a symbolic link from /images to /opt/fog/images
You may need to check the file permissions before you start and after you’re done to make sure things are sane. But IMO this is a better setup than placing both the /images and /opt/fog/snapins on the root partition. In this setup the /opt directory (vmdk) can go to 100% and it won’t take down the OS.
But if you want to extend your current VMDK I did a write up a bit ago on how to do this with rhel 6 based system.