Visit Open-E website
Results 1 to 10 of 15

Thread: Open-E DSS Replication

Hybrid View

Previous Post Previous Post   Next Post Next Post
  1. #1

    Default

    Quote Originally Posted by amscanada
    Hey Tom,

    I came up with one new question. Does replication only work between 2 Open-E boxes or can I mount any iSCSI target in Open-E and replicate to that LUN?
    Sorry Todd, I wrote Tom by mistake.

  2. #2

    Default

    No worries on the name . With Volume Replication (Block level) combinations are DSS to DSS or DSS to iSCSI R-3 Enterprise. With Data Replication (rsync) DSS to DSS, DSS to NAS R-3 Enterprise and or any other Linux system.

    rsync command used to synchronize from your operating system to Open-E
    server can look similar to this:

    cd $SOURCE_DIR
    export RSYNC_PASSWORD=${PASSWORD}
    rsync -raRx --acls --xattrs --whole-file --delete --force "./"
    "$LOGIN@$RSYNC_DEST_IP::$DEST_SHARE"

    rsync command used to synchronize from Open-E server to your operating
    system (executed on your operating system) can look similar to this:

    cd $DEST_DIR
    export RSYNC_PASSWORD=${PASSWORD}
    rsync -raRx --acls --xattrs --whole-file --delete --force
    "$LOGIN@$RSYNC_DEST_IP::$SOURCE_SHARE" "./"
    All the best,

    Todd Maxwell


    Follow the red "E"
    Facebook | Twitter | YouTube

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •