No, I don't think there is huge traffic. I have two machines one has front
end and other one has a host with XEN virtualization. Machines doesn't have
hardware virtualization support. Machines are connected via a switch.

I have given how my process to have NFS storage. do you see any wrong there
?.

Thanks

Front-End

   -

   Install NFS Server
    -

      sudo apt-get install nfs-kernel-server
       -

   Let others access data store directory
    -

      sudo nano /etc/exports
      -

      put in that file bellow
       -

         /var/lib/one 10.*.*.161(rw,async,no_subtree_check,no_root_squash)
          -

      reload services with bellow commands
       -

         $ sudo /etc/init.d/nfs-kernel-server reload

Hosts

   -

   Install NFS Client
    -

      sudo apt-get install nfs-common
       -

   configure to access data stores at start up
    -

      in /etc/fstab add
       -

         on-front:/var/lib/one /var/lib/one nfs udp,_netdev 0 0
          -

      sudo mount /var/lib/one


After this I can see front end var/lib/one directory from hosts.
_______________________________________________
Users mailing list
[email protected]
http://lists.opennebula.org/listinfo.cgi/users-opennebula.org

Reply via email to