Master and Slave configurations

Hi
I am currently wondering why my master and slave configurations dan't work. I have the Rev. B mother board and I set the jumpers to the right spots. I am trying to get my CD Burner to work with my regular CD Rom on the same wire.

Jarrett,
my experience with my 3 Beige G#'s (1 desktop and two towers), tells me that a master/slave configuration with two optical drives is not really possible/compatible.
As a matter of fact, I had to opt for the following solution:
- Sony 52X burner installed in the CD bay;
- Iomega 52X USB burner on the USB PCI card.
I also had a huge number of problems with the master/slave configuration of drives, and it only worked with certain brands of drives.
For instance, two WD drives would not get along in the same case (data corruption like there's no tomorrow.....)
I ended up having a WD and a Seagate, which still get a long nowadays in my B&W G3.
To give you some more curious feedback on the bad habits of the Beige machines........my old G3 now sits in my son's room.
Believe it or not, I had to remove the Sony burner, as the computer would not boot from it, at all.
It would read and play CD's but it would not boot, in the most standard of the configurations:
- CD Burner Master and 1 IDE drive as a slave;
- SCSI card with SCSI drive;
I replaced the burner with the APPLE CD-drive form my B&W, and the system started working and booting like magic (I swear....I did not change anything else).
It boils down to trying and experimenting. I spent countless hours with those machines trying to figure out why the same configuration working on my Beige minitower would not work on my daughter's Beige minitower, exactly identical machines, both with rev. B boards.
Hope this can help.
cheers

Similar Messages

  • Master and Slave concept

    hi guys,
    i am confused about the master and slave realtionship in ospf. any one can explain it to me in detail.

    Hello Pankaj,
    The Master and Slave in OSPF are a slightly confusing concept but the idea behind it is quite simple.
    When two routers decide to become fully adjacent, they must synchronize their LSDBs. OSPF tries to optimize this: the routers first exchange only the list of entries in their LSDBs. Each router compares the received list to the list of items in its own database, and if it finds that an LSA is missing or is older than one the neighbor knows about, it requests it from the neighbor afterwards. This way, both routers transmit only the missing or updated LSAs, not the entire LSDBs.
    The list of LSDB entries is carried in Database Description (DBD) packets. Naturally, when routers exchange DBD packets, they must be sure all of them have been properly received by the neighbor, so some sort of acknowledgements must be used. There is a problem here, however: the only packets in OSPF used to carry acknowledgements are LSAck packets, but they can only be used to acknowledge LSU packets (more precisely, individual LSAs carried in LSU packets), not DBD packets. How shall the acknowledgements of DBD packets be accomplished, then?
    OSPF uses a polling style of communication with the DBD packets. DBD packets themselves have sequence numbers used for sequencing and acknowledgement purposes. One of the two routers that are in the synchronization phase will be the one responsible for polling the other (i.e. calling it out it to send another piece of information if it has any), each time with an incremented sequence number. This is the Master role. The other router will only be allowed to respond to a DBD poll, never send any DBD packet without being polled immediately before, and the response DBD packet must carry the sequence number of the Master's DBD poll packet. This is the Slave role. The Slave must respond to each Master's DBD packet even if it has no more LSDB entries to advertise; in that case, the DBD response body will be empty.
    So during the DBD exchange, the Master sends DBD packets to Slave, incrementing the sequence number by one in each round. The Slave waits for DBD packets from the Master and only responds to them, and each response carries the sequence number from the last received Master's DBD packet that was used to poll the Slave. Remember: a Slave must not send DBD packets on its own, only as responses to DBD packets received from the Master, and the sequence number of the Slave's response DBD packet must be set to the Master's poll DBD packet.
    While I call the DBD packets as "polls" and "responses" here for the sake of clarity, the DBD packets do not have this distinction indicated explicitly. Any DBD packet sent from the Master, either with a body carrying a list of LSAs or an empty body, is a poll. Any DBD packet sent from the Slave, again either with a non-empty or empty body, is a response. A DBD packet can have an empty body if the router needs to send a DBD packet to the neighbor (either from Master to repeatedly poll the Slave, or from the Slave to confirm the arrival of the DBD packet from the Master) but has no more LSDB entries to advertise itself.
    There are two issues with this simple procedure. First, there is the issue of who out of two synchronizing routers will be the Master and who will be the Slave. This is resolved during the ExStart phase: both routers initially treat themselves as Master routers, and send DBD packets with random initial sequence numbers to each other, indicating the MS flag (Master) in their header. As they do this, the router with the lower RouterID moves to the Slave role, while the router with the higher RouterID remains in the Master role. The ExStart phase is basically finished after establishing the router's role in the synchronizing pair; at most two DBD packets are needed for that, one from each router. The Exchange phase then lasts until routers have exchanged the entire list of their LSDB entries using DBD packets.
    The second issue is more subtle: how should the Master know whether the Slave needs to be polled further? Clearly, a situation may arise when the Master's LSDB is empty or smaller than the Slave's, and the Master will need to send fewer DBDs than the Slave to list all its LSDB contents. As the Slave can not send a DBD packet on its own, it somehow needs to tell the Master to poll it again. This is accomplished by another flag in DBD packet header, the M (More) flag. If a Slave replies to the Master's DBD packet with its own DBD packet and the M flag set, the Master knows the Slave needs to be polled again. The Master will stop polling the Slave after the last DBD packet fom the Slave has the M flag cleared.
    The RFC 2328 has a nice ASCIIart graph of the adjacency coming up:
                +---+                                         +---+
                |RT1|                                         |RT2|
                +---+                                         +---+
                Down                                          Down
                                Hello(DR=0,seen=0)
                           ------------------------------>
                             Hello (DR=RT2,seen=RT1,...)      Init
                           <------------------------------
                ExStart        D-D (Seq=x,I,M,Master)
                           ------------------------------>
                               D-D (Seq=y,I,M,Master)         ExStart
                           <------------------------------
                Exchange       D-D (Seq=y,M,Slave)
                           ------------------------------>
                               D-D (Seq=y+1,M,Master)         Exchange
                           <------------------------------
                               D-D (Seq=y+1,M,Slave)
                           ------------------------------>
                               D-D (Seq=y+n, Master)
                           <------------------------------
                               D-D (Seq=y+n, Slave)
                 Loading   ------------------------------>
                                     LS Request                Full
                           ------------------------------>
                                     LS Update
                           <------------------------------
                                     LS Request
                           ------------------------------>
                                     LS Update
                           <------------------------------
                 Full
    The I flag here is another flag in DBD headers called the Init flag, and is set only on initial DBD packets in the ExStart phase. If the router has established its Master or Slave role, it clears the I flag. This one is not really that important right now.
    The Master/Slave relationship is built and relevant only during the initial LSDB synchronization when a new adjacency is being established. After the two routers go past the Exchange state, DBD packets are not used anymore, and the whole Master/Slave relationship is forgotten. Remember: Master/Slave is relevant only to DBD packets, and DBD packets are used only in ExStart/Exchange phases. Outside of these states, there are no DBD packets used, hence no Master/Slave relationships exist.
    If there are, say, four routers, R1 till R4, connected to the same switch and run OSPF, during the OSPF bootup, there will be 5 temporary Master/Slave relationship built and torn down afterwards:
    between the DR and BDR as they synchronize (assume those routers are R1 and R2)
    between R3 and DR
    between R3 and BDR
    between R4 and DR
    between R4 and BDR
    Notice the Master/Slave relationship existed between those routers that went through ExStart and Exchange into the Full state. Also keep in mind that in the Full state, there are no more Master/Slave relationship present - they were only needed because of the specific needs of the DBD packet exchange.
    Does this make the issue a little more clear? Please feel welcome to ask further!
    Best regards,
    Peter

  • Master and Slave Loops

    I'm having problems with my Master and slave loop combination.  I would like to be able to start and stop acquiring data from individual thermocouples. Please help.
    Message Edited by nicholas03 on 04-13-2008 03:22 PM
    Attachments:
    eight thermo.JPG ‏106 KB

    Dear Nicholas,
    My first advise would be to check the examples on master-slave patterns, and run them step by step, looking at what the data does...
    In a master-slave system, you use the queue to pass data from the master to the slave.   You're not passing data in the queue... in stead, you're passing data using local variables, which you should NOT do...  
    In the top loops, you should attach the temp array to the enqueue element.   In the bottom loop, you should remove the temp local, and instead get your data from the dequeue vi.
    Also, you have to create a queue with the proper variable.   You can create a queue from any variable type, but it has to know beforehand, and the init vi.  
    Assuming you want to queue the temp array, you're basic structure should look like this:
    It does help if you add your own code, so we can easier edit it for you...  Otherwise we need to use photoshop on your design...
    Message Edited by Anthony de Vries on 04-14-2008 11:30 AM
    Attachments:
    master-slave1.JPG ‏24 KB

  • Master and slave problem

    Hi Everyone,
    When I try to use the MAster and slave template which is provided by the NI itself, try to understand it how it works, but when  I use this concept to implement in my code, just found there is the problem at there:
    Problem:
    1. The master loop always looping even though there do have a notification from the master to slave but the slave do not respond anything, can't figure the reason.
    2. When the master loop is exit then the slave loop just start to execute but it is too late cos master loop already exit.
    Those senario are different from the master and slave template. need your help.
    Thanks
    William Lee

    Hi Williamlee,
    Thanks for contacting National Instruments, 
    It would be much easier if we could see your code, this will help us work out where the issue is, and to help us understand where you maybe having issues... 
    Also I would like to include some more information with regards to the Master/Slave template.Developer Zone article : Application Design Patterns : Master/Slave and also a webcast on Software Design Architectures in NI LabVIEW
    Kind regards,
    Ashish Naik
    Field Sales Engineer
    National Instruments UK

  • Multiple errors with DSC modules modbus master and slave

    Hi,
    I've searched quite a lot of posts but haven't found solution for my problem. I'm playing with LabVIEW DSC module and it's modbus master and slave functionalities. Even the LabVIEWs own modbus examples (Modbus Simulator and Fundamentals) seem to work randomly or not at all: When checking the Variable Manager utility Modbus Simulator (i.e. modbus slave/server) seems to deploy variables correctly with good quality but Modbus Fundamentals (i.e. modbus master/client) most often shows unknown value or bad quality for all the variables. When running the VIs I get 'Error -1950679035 Unable to locate variable in the Shared Variable Engine' and sometimes some other errors too. If the Modbus Simulator (slave/server) is expected to work fine I guess I should get two slaves communicating, but this isn't happening either. So maybe Modbus Simulator example isn't working either.
    I've tried undeploying and deploying the libraries, stopping and starting the SVE, booting PC, reinstalling DSC module, and setting firewall and antivirus software off. This problem is going on with two different computers, both of which have recently installed LabVIEW 2011, first PC with Win XP and second PC with Win 7. No other OPC servers should be installed to these computers. And what is really interesting, the problem seems to have nothing to do with my network since Simulator and Fundamentals examples are not working even if the network cable is unplugged!
    Any suggestions? Replies are highly appreciated!

    V8 has the same feature, but the words are different.
    The Generator typically uses the Driver time base, and the Gl. Var Write is writing once per block.
    So, to see all values, you must have a block size of one.
    I set up the Driver timebase to 10 Hz, block size of 1. The Generator and the Read Variable default to the Driver timebase.
    The Generator is making a 2 Hz Rectangle waveform. YOu can see that it's shifted, but otherwise intact.
    - cj
    Measurement Computing (MCC) has free technical support. Visit www.mccdaq.com and click on the "Support" tab for all support options, including DASYLab.

  • DNS addresses (master and slave) + personalizing the url address

    Hello.
    My name is Fernando and I published my site using MobileMe (www.fernandoingles.com).
    It’s working already really well.
    But since I’m from Brazil, I built one in Portuguese as well.
    And since the common site endings here are .br I’m trying to purchase the www.fernandoingles.com.br as well but in order to be able to actually buy the site I have to give them two DNS addresses of the place I’m publishing the website with.
    (one ‘Master’ and one ‘Slave’).
    How can I get those addresses?
    And another thing is that I also have my bands site’s published under my main domain name (fernandoingles.com) with my main MobileMe account (but I have the family pack now).
    [www.pipeusa.net and www.pipebrasil.com]
    I purchased those Urls using GoDaddy and they are all properly forwarded already, which means that when the person types those addresses above it already goes to the correct site.
    But what shows on the actual url above is (http://www.fernandoingles.com/fernandoingles.com/Pipe.html).
    And what I would like to appear is only the addresses (www.pipeusa.net and www.pipebrasil.com) instead of my name before them.
    I bought the family pack so that I would have more space and etc... and already put those addresses ((www.pipeusa.net and www.pipebrasil.com and fernandoingles.com.br) as their main domain.
    But since I’m publishing them all using my own iWeb how could I make those extra sites work as their own main sites?
    Would it work if I log in with the desired MobileMe sub-account (let’s say www.pipeusa.net) and then go to iWeb, move that site to the top and them publish it?

    Thank you so much for the response!
    Great option on the added accounts!!
    Since I manage all those sites myself could I manage them all within the same 'log in' or each and every time I need to make a change on one of those sites I must 'log out' of whatever account I'm in and then 'log in' into the account that the change needs to be made?
    And whenever I 'log in' into those accounts (the ones that have the respective domains) should I replace on iWeb before I publish the top site with the one I want to as the main domain or can I just not do anything at all?
    And about the DNS address issue,
    Since I’m from Brazil, I always build two sites, one in Portuguese and one in English.
    And since the common site endings here in Brazil are '.br' I’m trying to purchase the '.br' option of all the addresses I have as well but in order to be able to actually buy the site I have to give them two DNS addresses of the place I’m publishing the website with.
    (one ‘Master’ and one ‘Slave’).
    How can I get those addresses?"
    Thank you so much for the help!!!!

  • Assign my 2 servers as master and slave driver

    I am trying to set up my 2 servers which already have had data and information: one as Master and the other as Slave how to use the unix commands to do this.
    Thank you very much,
    Paul

    Hi Williamlee,
    Thanks for contacting National Instruments, 
    It would be much easier if we could see your code, this will help us work out where the issue is, and to help us understand where you maybe having issues... 
    Also I would like to include some more information with regards to the Master/Slave template.Developer Zone article : Application Design Patterns : Master/Slave and also a webcast on Software Design Architectures in NI LabVIEW
    Kind regards,
    Ashish Naik
    Field Sales Engineer
    National Instruments UK

  • Synchronization - Master and Slave tasks.

    For syncrhonisation (via hardware) of two modlues; one 4330 and 6361, shall I create one master task for the 4330 and then syncrhinise it with the 6361 module? Or create multiple channels say 5 from 4330 and 5 from 6361 and then specify one channel from 4330 to be the master and all the rest modules from 4330 and 6361 to be slave tasks?
    Thanks, 

    Hi Pepis21,
    My name is George and I am an Applications Engineer at National Instruments. I see Luke has already done a good job of helping you but I found a couple of examples that you might find helpful.
    Here is a tutorial that shows a few more examples of how to synchronise channels and devices using a couple of different methods;
    http://www.ni.com/tutorial/11549/en/
    You may be able to see some other synchronisation examples in the NI example finder within LabVIEW under “DAQmx” under “Hardware Input and Output”. I will also link an image of another example below that shows how to use error wires to force dataflow without using flat sequence structures as Luke suggested.
    I hope these are useful for you.
    Regards,
    George

  • Odd master and subprojects configuration

    I've inherited a project that is put together rather oddly. I
    have been editing some of the topics here and there as requested,
    but was prompted to take a closer look at the overall project
    structure when I noticed that, after the master project was
    compiled, a large number of topics returned a "page cannot be
    displayed" error when I tried to open them (although oddly enough,
    I *can* open them in the browse sequence, just not when I click
    directly on the topic page).
    I traced it down to a subproject that had been merged into
    the master project at two different points. The first point was
    just below a "top-level" book in the TOC. The second place was
    under a "subbook" beneath a "top-level" book in the master
    project's TOC.
    The master project is called "Admin". I went to see which
    CHMs were in Admin in the !SSL! only to find that this folder is
    completely empty. All of the CHMs are in a folder called !CHMs!
    (normally, when you create a project, the CHM file is in
    \!SSL!\Microsoft_HTML_Help\). This is an odd configuration but it
    seems to work (more or less).
    I went to check each of the four subprojects (I can only find
    one other subproject that's merged into the master project). Let's
    call the subprojects A, B, C, and D. Subprojects A, C, and D are
    structured just the way you'd expect. Each subproject contains a
    single CHM fow that subproject in \!SSL!\Microsoft_HTML_Help\ so
    for example, subproject A's chm can be found at
    \!SSL!\Microsoft_HTML_Help\A.chm. The same for C and D. B is
    another matter.
    Here is the structure of subproject B's directory and
    relevant subdirectories:
    B folder
    !SSL! folder
    InfoSDK folder
    InfoSDK.chm
    Object folder
    Admin.chm
    Object.chm
    Microsoft_HTML_Help
    Admin.chm
    B.chm
    As you can see, instead of the !SSL! folder containing just
    the Microsoft_HTML_Help folder which contains the subproject's chm
    file, there are three folders in !SSL!, each containing one or more
    chm files. The really odd thing is that two of those folders
    contain the chm file from the master project (Admin.chm) and only
    one folder (Microsoft_HTML_Help) contains the chm for the B
    subproject.
    I thought perhaps that this subproject had another subproject
    nested beneath it but in looking at the TOC, I can't find any
    merged project links. The B subproject itself has a large number of
    folders that are heavily nested beneath each other, so it's
    directory structure is both complicated and extensive.
    Before anyone asks me to zip the entire thing up and send it
    out, the content is proprietary and confidential and I can't send
    it out into the open. I'm hoping someone can tell me based on my
    description, what is going on here.
    As far as the topics from the merged B subproject that
    wouldn't open when I compiled and ran the master project "Admin", I
    double-clicked the merged project link for B in the Admin TOC to
    open the Merged Project dialog box. I discovered that the HTML Help
    File pointed to the B.chm but the TOC file pointed to Admin.hhc.
    When I pointed the TOC file to B.hhc and recompiled the master
    project, everything opened fine.
    I have a sneaky suspicion though that I may have broken
    something in the process and that topics that should be available
    in the master when it's compiled are no longer available.
    I apologize for the length of this post and the level of
    confusion it's probably generating, but this is the only way I can
    think to describe the situation short of being able to actually
    show you what's going on.
    Any responses and ideas would be greatly appreciated. Thanks.
    -Trip

    quote:
    Originally posted by:
    MergeThis
    The !SSL!/WhateverLayout folders are only the default folders
    that RH oh, so helpfully creates for every layout you design. I
    suggest that you break free from the !SSL! trap, by setting up new
    layouts for these projects and generating them all to a single
    folder just off the local machine root, say under C:\RH_Admin.
    This layout structure not only keeps the structure clean, but
    virtually eliminates the possibility of over-long link paths.
    Which explains why the chm files for the Admin
    master project are in !CHM! rather than !SSL!. Not being a RoboHTML
    guru, I assumed that !SSL! was the required directory for all chm
    files but as you explain it, they cah be contained in any folder as
    long as you select that particular directory as the output folder
    containing the required chm file for the project. I will certainly
    explore your suggestion in future projects I develop but in terms
    of this older set of projects, I'd just as soon leave well enough
    alone for the time being. There's a rather large product base that
    uses this set of help files and if I broke it, the consequences
    wouldn't be pretty.
    I still dont get why my predecessor placed the Admin.chm file
    (which is the chm file for the master project) in the directory
    structure of a subproject the way I've described. I can't see any
    reason for it and am not sure why in creating a merge link, she
    referenced the chm of the subproject but pointed the TOC to the
    Admin.hhc. As far as I can tell, you don't need to do that in order
    to allow the subproject books and topics to be displayed in the
    master project's TOC after the merge is complete. Any ideas?
    EDIT: Now this is interesting. I just had a look at the
    properties of a merge project link I created and while I can select
    the particular chm file in the HTML Help File drop down menu, the
    TOC File selection is fixed foe the same project's .hhc file. I
    wonder if the reason for including the admin.chm file in the !SSL!
    folder of subproject B with the B.chm file was to allow my
    predecessor to be able to select between the Admin.hhc and B.hhc
    files for the TOC File. If you choose one project's chm file for
    the HTML Help File and another project's hhc file for the TOC file,
    what happens (given that in my experience, it makes all of the
    subproject's topics unable to be opened when merged and compiled
    with the master project)?

  • Syncronization of 2 USRP in Reception (master and slave)

    Hi,
    When I run "niUSRP EX Rx Finite Sync.vi " for the USRP slave device connected to the master via the MIMO cable. I set:
    Reference Frequency Source -> MIMO
    Timebase Clock Source -> MIMO
    I have the following error "niUSRP Initiate.vi <err> The PLL reference clock About did not lock Within the alloted time"
    Can you help to resolve this problem?
    Can you help me to synchronize two USRP in reception: one slave and the other is the master connected with MIMO cable?
    Thank you
    Solved!
    Go to Solution.
    Attachments:
    niUSRP EX Rx Finite Sync.vi ‏32 KB

    I set this parameters to the master device that is connected directly to my laptop and10 MHz generator and PPS generator::
    IPAdressMaster=192.168.10.2
    Reference Frequency Source -> RefIn
    Timebase Clock Source -> PpsIn
    -----> that's work
    However, when i tried with the slave device that is connected to the master via the MIMO cable :
    IPAdress=192.168.10.3
    Reference Frequency Source -> MIMO
    Timebase Clock Source -> MIMO
    -----> I have the error mentionned in my first message
    Where is the problemem?
    this exemple ("niUSRP EX Rx Finite Sync.vi " ) allow us to verify the good working of slave device?
    thank you

  • Dual spi device with one master and one slave on the PC end

    The powers that be want to emulate a hight speed RS-232 connection to an instrument we are building. We don't want to poll the instrument to see if it has data. They want the instrument to have both master and slave SPI busses so that it can push data to us.
    I need to find the PC hardware to do this that is compatable with LabView so I can test it. It doesn't have to be a single device. It could be two as long as one can be master and the other slave. We have the NI USB-8452 but it can't be slave.
    TIA  Norm
    Attachments:
    Dual SPI.png ‏26 KB

    Hi Viper
    You are right, the 8451 can only be configured as an SPI Master. For creating a slave you would have to choose an FPGA based solution. Depending on the hardware from NI that you currently have, you can choose from different FPGA cards or devices. I found some links that might help you with your search:
    Community: SPI Slave Device in FPGA
    White Paper: Implementing SPI Communication Protocol in LabVIEW FPGA
    Forums: Slave SPI product recomendation
    Forum: SPI in FPGA Multifunctional card discussion
    White Paper: SPI and LV basics (check section 7)
    Hope the information provided is helpful.
    WenR

  • How to make one Mac the "master", and the other Macs "secondary"?

    When using ISync to my DotMac account, and using three or four Macs all synching to one DotMac account, is it possible to designate one particular Mac to be the "most important" or "parent" Mac, and then all others, (laptops), be less important?
    I just want the Address Book on the main machine, the G5 Desktop, to always take precedence, and never get overwritten in any way, by a less refined Address Book on a laptop traveling machine.
    Thank you.

    iSync (or rather .Mac Sync is what you are referring to) does not work like that.
    There is no master and slave relationship in synchronising. All devices are equal and all devices sync their data to all other devices equally. That is what true synchronising is.
    What you are proposing is not synchronising - it is a simple copy and replace operation from one source, and the SyncServices framework is not designed for that.
    The whole point of synchronising is to get away from having a Master data source. You can change data on ANY device (Mac, phone or PDA) and the changes will be synced to all other devices.

  • Speedlite 600EX-RT on 60D in HSS using RT in Master/Slave configuration

    I have 2 new 600EX flashes to go with my 60D.  In reading the manual, it says you cannot use the flashes off-camera in RT mode with HSS.  I didn't want to believe that so kept playing with things.  It appears I may have found a way to do it but I want to know if anyone else has tried this.  I went into the camera menu under Flash Control, selected the External Flash Func Setting option and changed the Shutter sync to Hi-speed.  I have one 600 mounted on-camera and set to Master and one 600 off-camera set as slave using RT.  I was able to use shutter speed > 250.  Please lmk if anyone else has done this and if it worked for them.  Thanks!

    I've seen the same statements and also found that even using radio mode you can set the high speed sync from the camera menu in my case on a 7D. 
    In fact I wrote a whole great article on all the things you "can't do with a pre-2012 EOS" and how some of them do indeed seem to work at least when you only have a couple of slaves. I've also recenlty discovered something that the old cameras can do with pulsed light off-camera flash but can't do with radio flash too...
    Some links
    http://www.p4pictures.com/2012/07/using-the-speedlite-600ex-rt-with-pre-2012-eos-cameras/
    http://www.p4pictures.com/2013/01/radio-speedlite-flash-the-missing-feature-for-older-cameras/
    Brian / p4pictures
    Canon specialist trainer, author and photographer - http://www.p4pictures.com

  • What are the network restrictions for a Tuxedo MP configuration between the Master and Backup?  Can they be on separate networks?

    We are migrating from one data center to another and want to keep 100% uptime during the process.  The two data centers are on separate networks but in the same city.  I want to migrate the Master and the Backup to the new data center with zero downtime. 

    Hi Harvey,
    Tuxedo machines just need TCP/IP connectivity.  So machines can be in different subnets, different Ethernets, etc.  I know of one customer that has a 13 machine MP configuration that is distributed across the entire country.  So as long as there is a route between the machines, you should be fine.  Here's an old but probably useful white paper on bridges, multiple networks, etc., from Aurora Information Systems:  "Exploring High Availability Issues with BEA Tuxedo and Third Party High Availability Software".  While it's a pretty old white paper, from what I can see most of it is still applicable.
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect
    PS  You should write some articles about what you've been up to and how you've accomplished it!

  • I use internode and imap. When the ipad deletes emails it also removes them from the mac. How can I reverse this so the mac is the master and the ipad is the slave?ipa

    I use internode and imap. When the ipad deletes emails it also removes them from the mac. How can I reverse this so the mac is the master and the ipad is the slave?

    Thanks for the info. - I now know that deletion works both ways!! - (unlike POP where emails deleted from the ipad also deleted them from the mac even before I could read them,  whereas emails deleted from the mac were not removed from the ipad!!! - ie. the ipad was the master over the mac - the slave).  Prior to changing to imap I used to transfer all nongarbage emails from inbox to mailboxes before my husband could ask if he could delete emails on his ipad. I have noticed however if you do this in imap, they are removed from the inbox on the ipad as well (this did not happen with POP). So we still have to check but the number is less so we like imap better than POP.
    Thank again

Maybe you are looking for