Latest post Mon, Jul 14 2008 11:23 PM by briMestone. 10 replies.
Page 1 of 1 (11 items)
Sort Posts: Previous Next
  • Tue, Jun 24 2008 8:29 PM

    • JohnF
    • Not Ranked
    • Joined on Tue, Jun 24 2008
    • Posts 5
    • Points 85

    ATTO Dual Fibre Channel Cards

     Does anyone know if you can connect to two separate servers with the ATTO Dual Fibre Channel Cards?  We have two servers and I would like to be able to access them both simutaneously.

    MacPro, Unity 5.1 and Unity 4.X servers.

  • Tue, Jun 24 2008 8:38 PM In reply to

    Re: ATTO Dual Fibre Channel Cards

    No, it is not possible.

     

    Intel E6600, Windows XP SP2, EVGA 8800 GT, 4GB RAM, Creative X-Fi. [view my complete system specs]
  • Tue, Jun 24 2008 8:45 PM In reply to

    • JohnF
    • Not Ranked
    • Joined on Tue, Jun 24 2008
    • Posts 5
    • Points 85

    Re: ATTO Dual Fibre Channel Cards

  • Tue, Jul 8 2008 7:49 PM In reply to

    • briMestone
    • Not Ranked
    • Joined on Fri, Nov 18 2005
    • San Francisco
    • Posts 70
    • Points 840

    Re: ATTO Dual Fibre Channel Cards

    Its not Posible using the Fiber Manager (Application only looks at a single Channel), But it can be done.

    I have a Backup Machine that has a FC-42XS connected to both Unity Server and with SAS Drives and Unix scripting to Auto Mount Partition for backup and umount when its done.

     

     

     

     

    2x Unity 5.1 with 7 MediaArray XT, 17 Adrenaline/DX MC , MacPro 8cores, xw8200, Protool HD [view my complete system specs]

    ------

    Ted Simbajon

    Head Janitor Wink

  • Wed, Jul 9 2008 2:56 PM In reply to

    Re: ATTO Dual Fibre Channel Cards

     It is possible to connect to two servers at the same time, but not quite the way you are thinking about doing it.

    If you have Port Server going on one of those servers, use Ethernet to connect to that server and use Fibre to connect to the other server.

    I have been trying to set up two servers with simultaneous Fibre connection from one client, but it's not been happening for me logistically. But it should be totally possible if you run the same FM version on both servers.

  • Wed, Jul 9 2008 4:35 PM In reply to

    • briMestone
    • Not Ranked
    • Joined on Fri, Nov 18 2005
    • San Francisco
    • Posts 70
    • Points 840

    Re: ATTO Dual Fibre Channel Cards

    I was able to connect 2 Unity Server on a single machine at the same time via Fiber Optics.

     

    If you guys are interested, ill be willing to help.

     

    ----

    briMestone

    2x Unity 5.1 with 7 MediaArray XT, 17 Adrenaline/DX MC , MacPro 8cores, xw8200, Protool HD [view my complete system specs]

    ------

    Ted Simbajon

    Head Janitor Wink

  • Wed, Jul 9 2008 5:13 PM In reply to

    • JohnF
    • Not Ranked
    • Joined on Tue, Jun 24 2008
    • Posts 5
    • Points 85

    Re: ATTO Dual Fibre Channel Cards

     Yes, please share.

    Thanks!!

  • Wed, Jul 9 2008 5:48 PM In reply to

    • briMestone
    • Not Ranked
    • Joined on Fri, Nov 18 2005
    • San Francisco
    • Posts 70
    • Points 840

    Re: ATTO Dual Fibre Channel Cards

     

    Install like you normally install an FC-42XS, then install Fiber Manager 5.1 (Better since it can connect to Older version of  Server).

    Plug in both Fiber Cable (Server1 and Server2) to each port of the Fiber Card, Confirm all Drives from both Server are connected using the Atto Config Tool, (there should also be 2 FakeCom....)

    Now the Unix Part of it all

    #This is how you connect to the server without using the Fiber Manager Tool

    Mount_Avidfs -U <account> -g GID VirtualName:$MOUNT /Volumes/$MOUNT

    #Note, even if you dont use the Fiber Manager, Connected Unity Drives will Work just like Fiber Manager, All the Featues will work including Bin Locking etc etc etc. Also, once both Server are connected to the Machine, you CANT use both Fiber Manager and Administrator Tool, since both of those application would only look at a single Fiber Channel.

    Now im not great in GUI coding nor an Xcode GURU, so here is something geeky that works for me.

     

    ##### 2 Unity Backup System Via Fiber By Ted Simbajon: t3ddy94123@yahoo.com #####

    #!/bin/sh
    SPACE1="Partition1"
    SPACE2="Partition2"
    SPACE3="Partition3"

    LOOP=3
    COUNT=0
    rm STATUS.log
    while [ $COUNT != $LOOP ]
     do
      COUNT=$((COUNT+1))
      MOUNT=$( eval echo \$SPACE${COUNT})
      MOUNT2=$MOUNT"_"
      mkdir /Volumes/$MOUNT
      mkdir /Volumes/$MOUNT2
      mount_Avidfs -U <account> -g GID VirtualName1:$MOUNT /Volumes/$MOUNT
      mount_Avidfs -U <account> -g GID VirtualName2:$MOUNT /Volumes/$MOUNT2
      chflags nouchg /Volumes/$MOUNT2/"Avid MediaFiles"
      rsync -avru --delete --progress /Volumes/$MOUNT/ /Volumes/$MOUNT2
      chflags uchg /Volumes/$MOUNT2/"Avid MediaFiles"
      du -hsx /Volumes/$MOUNT  >> STATUS.log
      du -hsx /Volumes/$MOUNT2 >> STATUS.log
      umount /Volumes/$MOUNT
      umount /Volumes/$MOUNT2
      rmdir /Volumes/$MOUNT
      rmdir /Volumes/$MOUNT2
      Sleep 5
    done

    mailx -s "STATUS REPORT" t3ddy94123@yahoo.com < STATUS.log

     

     

     Feel Free to ask questions

    ----

    Ted Simbajon

     

    2x Unity 5.1 with 7 MediaArray XT, 17 Adrenaline/DX MC , MacPro 8cores, xw8200, Protool HD [view my complete system specs]

    ------

    Ted Simbajon

    Head Janitor Wink

  • Wed, Jul 9 2008 5:57 PM In reply to

    • JohnF
    • Not Ranked
    • Joined on Tue, Jun 24 2008
    • Posts 5
    • Points 85

    Re: ATTO Dual Fibre Channel Cards

     Thanks much Ted!

    I'll give it a try.

  • Fri, Jul 11 2008 4:36 AM In reply to

    • AvidHammer
    • Top 500 Contributor
    • Joined on Mon, Mar 13 2006
    • Los Angeles
    • Posts 114
    • Points 1,245

    Re: ATTO Dual Fibre Channel Cards

    Just to confirm, we were able to do this as well, with Ted's help of course.

    We did have to use a 42XS because as far as I know there are no drivers for the 3321 on a Mac. 

    We're still in the process of getting it done on the PC--I'm sure we'll get there (now, with Ted's help), but just didn't have enough time to work it out today. 

    It's actually quite groundbreaking for us.  Thanks, Ted.

    ~Hammer

     

    [EDIT:  We were able to mount both workspaces (from seperate unity's) on Tiger when both unity's were 4.1.5.  When testing with 5.1 and 4.1.6, we weren't able to (quickly) get Tiger to work.  Although it may have worked with more fiddling, we just upgraded to Leopard and attempted both successfully.  Now this is so old-hat(Stick out tongue), we want to do the ultimate test, which is actually what our client needs:  Two existing unity's going into one brand new.  ...a 42 XS and a 41 XS...connecting 3 at a time.  Wink ]

  • Mon, Jul 14 2008 11:23 PM In reply to

    • briMestone
    • Not Ranked
    • Joined on Fri, Nov 18 2005
    • San Francisco
    • Posts 70
    • Points 840

    Re: ATTO Dual Fibre Channel Cards

    Hahahahaha... and? how did it go?

     i think, you have to beef up the memory on the bridge machine.

     

     

    ---

    Ted

     

     

    2x Unity 5.1 with 7 MediaArray XT, 17 Adrenaline/DX MC , MacPro 8cores, xw8200, Protool HD [view my complete system specs]

    ------

    Ted Simbajon

    Head Janitor Wink

Page 1 of 1 (11 items)