Changes between Version 1 and Version 2 of UfoClusterStorage


Ignore:
Timestamp:
Feb 10, 2013, 3:23:37 PM (12 years ago)
Author:
Suren A. Chilingaryan
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • UfoClusterStorage

    v1 v2  
    1 = tgtd =
     1= Fast Storage Server =
    22 * Forwards fast raw devices using iSER protocol
     3 * Read-ahead of the raid should be adjusted for the optimum performance
     4{{{
     5blockdev --setra 65536 /dev/sd#
     6}}}
    37 * Package tgt
    48  * No iSER support in OpenSuSE RPMS
     
    1923</target>
    2024}}}
     25
     26= Camera Computer =
     27 * openiscsi package, ''iscsid'' should be started on boot
     28 * Server node configuration
     29{{{
     30iscsi_discovery 192.168.11.1 -t iser -f
     31iscsi_discovery 192.168.11.3 -t iser -f
     32}}}
     33 * It will populate 2 extra ''/dev/sd?'' nodes
     34 * Create softraid 0 for optimal performance
     35{{{
     36mdadm --create /dev/md3 -n 2 -l 0 /dev/disk/by-path/pci-0000\:06\:00.0-ip-192.168.11.1\:3260-iscsi-iqn.ipepdvcompute1.fast-lun-1 /dev/disk/by-path/pci-0000\:06\:00.0-ip-192.168.11.3\:3260-iscsi-iqn.ipekatrinadei.fast-lun-1
     37}}}
     38 * Format it with XFS
     39{{{
     40mkfs -t xfs /dev/md3
     41}}}
     42 * fstab entry
     43{{{
     44/dev/md3 /mnt/server xfs noauto,noatime,allocsize=1GiB,largeio,swalloc,delaylog,nobarrier 0 0
     45}}}