Difference between revisions of "Windows Storage Node"

From FOG Project
Jump to: navigation, search
(Fog Server)
Line 35: Line 35:
 
[[File:Filezilla folders.png|center|frame|Make sure these files $ Directories all have Read, write, delete, append rights]]
 
[[File:Filezilla folders.png|center|frame|Make sure these files $ Directories all have Read, write, delete, append rights]]
  
</ul>
+
<li>'''Set Local Policies''': Set this policy to Enabled
 +
[[File:Local policy settings.jpg|center|frame|Set this policy to enabled]]
 +
 
 +
<li>'''Configure NFS Server''': Stop NFS Server Service, Edit Transport Protocol to TCP+UDP, and Start NFS Server Service
 +
{|style="margin: 0 auto;"
 +
|[[File:Properties of nfs server.png]]
 +
|[[File:Nfs tcp+udp.jpg]]
 +
|}
 +
</ul>  
  
  
Line 58: Line 66:
 
</pre>
 
</pre>
  
 
+
==Fog Web GUI==
 
+
*Then continue by adding a storage node just as you would in the wiki.
  
  

Revision as of 00:51, 17 June 2014

Windows Storage Node

  • This has been put together from the forum and should be useful to many. Windows Server NFS

Requirements

  1. Windows Server 2008 (R2)/Windows Server 2012 (R2)
  2. NFS Role Installed
  3. Filezilla Installed

Windows Step-by-Step

  • Create folder C:\images
  • Create folder C:\images\dev
  • Set Sharing
    NFS Sharing1.png


  • Set Permissions: Set proper permissions for All Machines
    NFS Permissions.png


  • Set Security: Make sure you do this for C:\, C:\images, and C:\images\dev
    Security 1.png Security 2.png Security 3.png


  • Setup Filezilla Account: Create fog account and make sure this is the same password for your Management password
    Create fog account and make sure this is the same password for your Management password


  • Setup Filezilla Folders: Make sure these files $ Directories all have Read, write, delete, append rights
    Make sure these files $ Directories all have Read, write, delete, append rights
  • Set Local Policies: Set this policy to Enabled
    Set this policy to enabled
  • Configure NFS Server: Stop NFS Server Service, Edit Transport Protocol to TCP+UDP, and Start NFS Server Service
    Properties of nfs server.png Nfs tcp+udp.jpg


Fog Server

Here is the tricky part.....You need to copy the hidden files on your Linux server to your windows server. These files are located @:

/images/.mntcheck --> c:\images\ /images/dev/.mntcheck --> c:\images\dev\

xxx.xxx.xxx.xxx ==> ip address of the windows server

I mounted the NFS drive and just did a cp command.

cd /
sudo mkdir images2
sudo chmod 777 images2
sudo mount xxx.xxx.xxx.xxx:/images /images2
sudo cp /images/.mntcheck /images2
sudo cp /images/dev/.mntcheck /images2/dev/
sudo umount /images2

Fog Web GUI

  • Then continue by adding a storage node just as you would in the wiki.



--Wolfbane8653.3362 (talk) 18:51, 16 June 2014 (CDT)