Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Edit /etc/exports to allow machineB to see the data archive on machineA (for more information, type "man exports")
    Code Block
    titlemachineA: /etc/exports
    /Users/me/filemgr/data/archive machineB(rw,sync)
    
  2. Mount the remote file system on both machineA and machineB (for more information, type "man mount")
    No Format
    mkdir -p /net/machineA
    mount -t nfs machineA:/Users/me/filemgr/data/archive /net/machineA
    
  3. Edit product-types.xml to use the NFS mount
    Code Block
    titlemachineA: product-types.xml
    ...
    <type id="urn:MyProdTypeId" name="MyProdTypeName">
      <repository path="file:///net/machineA"/>
    ...
    
  4. The FileManager should now return file paths that are reachable by machineB.

...