Changes between Version 2 and Version 3 of GTD_Cloud_lustre


Ignore:
Timestamp:
Oct 20, 2008, 1:58:46 PM (17 years ago)
Author:
rock
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GTD_Cloud_lustre

    v2 v3  
    4747}}}
    4848
     49[[BR]]
     50== 4. Setup Lustre ==
     51{{{
     52###  Setup Meta Data & Management Server  ###
     53$ mkfs.lustre --fsname=cloudfs --mdt --mgs /dev/sda2
     54$ sudo mount -t lustre /dev/sda2 /home/mdt
     55
     56###  Setup Object Storage Target  ###
     57$ mkfs.lustre --fsname=cloudfs --ost --mgsnode=xen@tcp0 /dev/sda3
     58$ sudo mount -t lustre /dev/sda3 /home/ost
     59
     60###  Lustre Client started  ###
     61$ sudo mount -t lustre xen@tcp0:/cloudfs /home/cloudfs
     62$ df -h
     63$ mount
     64}}}