WebLogic interrupts in two box cluster

          News group: weblogic.developer.interest.clustering
          Subject: WebLogic interrupts in two box cluster
          Hi,
          We have a production environment configured as a single cluster of four WebLogic
          servers using the Apache Proxy plugin. Two of the servers are located here and
          two are located across town (primary and backup) on Sun e10K boxes.
          In our testing environment we have a single cluster of two WebLogic servers running
          on a single box.
          For some reason when we are running in the production environment processing just
          stops (for about 33 seconds but sometimes over 2 minutes) and causes JTA timeouts.
          I have observed this during the create() of a stateless session bean, but I have
          been "told" that it happens randomly. This has NEVER happend in the test environment.
          Some of the session EJB create() methods are calling 4 other EJBs. I know that
          JNDI look ups are costly (average between 320ms and 550ms) but that doesn't get
          us to 33 seconds.
          Now for the constraints:
          We are not allowed to have an initial pool of EJBs (don't ask).
          We are not allowed to have local interfaces on the EJBs (don't ask).
          I am not allowed to see the source code (don't ask) to find out if a UserTransaction
          has been set.
          Some questions:
          If a UserTransaction has not been set, will WebLogic ALWAYS create the the other
          EJBs that the stateless session bean calls on the same server (collocated) instance
          or will they go across the wire to the next available server (because of the remote
          interfaces and the home objects having the load balancing logic)? (Note: the
          EJB descriptor may have transaction delineation defined on the EJBs participating
          in the transaction and the configuration we are using only provides round robin
          load balancing).
          Will the home objects requested by the session bean be created on the server the
          code is currently running (collocated) on or will any server with the distributed
          JNDI tree be allowed to provide the home object?
          If the above could happen, then paragraph 2 on page 4-10 of "Understanding Object
          Clustering" (Bea WebLogic Server 6.0) might come in to play where we have remote
          replicas adding to network overhead for the duration of the transaction. Since
          the processors on all the boxes appear to be more or less idle and there is loads
          of RAM available... Also I was "told" this only happens under load (100 simultaneous
          hits).
          Could we be falling into a convoying condition? Does the whole cluster stop when
          this condition happens or does just the single instance stop? If we have one
          server participating in the same transaction as another server would that stop
          the whole cluster? If we have 4 EJBs and load balancing decides all servers are
          participating in the same transaction (round robin on 4 servers gets all of them
          in the game), would that stop the whole cluster while data I/O flows across the
          wire?
          When an initial instance of an EJB is created (initial pool size), does the entire
          cluster get informed or does each server independantly manage its own pool? What
          about EJB instances when replica-aware EJBObject stubs are used. Documentation
          states that the stub is free to route any call to any server that hosts the bean,
          could this also bring more than one server into the same transaction?
          Other groups are looking into HTTP Session replication as a possible cause...
          Thanks for any thoughts,
          Ian
          

          Some results:
          The script directly targeted a single weblogic instance within the OT cluster,
          presumably taking the Alteon switch and (perhaps? probably?) the clustering out
          of the equation.
          The test was the bro regle script with 1 concurrent user (same test run in OT
          on October 14 overnight). The results below show weblogic.transaction.internal.TimedOutException
          caught by this application.
          2003-10-15 17:35:52,859
          2003-10-15 18:02:00,433
          2003-10-15 18:27:42,110
          2003-10-15 19:02:22,767
          2003-10-15 19:28:05,193
          2003-10-15 20:28:28,584
          2003-10-15 21:03:07,879
          2003-10-15 21:28:50,622
          2003-10-15 22:03:29,683
          2003-10-15 22:28:51,065
          these timeouts are falling roughly 25 minutes apart.
          Does this help at all?
          Ian
          "Ian Douglas" <[email protected]> wrote:
          >
          >Thanks,
          >
          >Will do.
          >
          >This may be OS related as we have found, that with a single automated
          >user, that
          >it interrupts every 60 minutes for the duration of some process.
          >
          >Ian
          >
          >"Sree Bodapati" <[email protected]> wrote:
          >>Take multiple threaddumps when server appears to have stopped processing.
          >>Threaddumps would tell you whats happening.
          >>
          >>
          >>
          >>
          >>"Ian Douglas" <[email protected]> wrote in message
          >>news:[email protected]...
          >>>
          >>> Any news on this one? A 30 second time out is pretty long...
          >>>
          >>> Ian
          >>>
          >>> "Ian Douglas" <[email protected]> wrote:
          >>> >
          >>> >News group: weblogic.developer.interest.clustering
          >>> >
          >>> >Subject: WebLogic interrupts in two box cluster
          >>> >
          >>> >Hi,
          >>> >
          >>> >We have a production environment configured as a single cluster of
          >>four
          >>> >WebLogic
          >>> >servers using the Apache Proxy plugin. Two of the servers are located
          >>> >here and
          >>> >two are located across town (primary and backup) on Sun e10K boxes.
          >>> >
          >>> >
          >>> >In our testing environment we have a single cluster of two WebLogic
          >>servers
          >>> >running
          >>> >on a single box.
          >>> >
          >>> >For some reason when we are running in the production environment
          >>processing
          >>> >just
          >>> >stops (for about 33 seconds but sometimes over 2 minutes) and causes
          >>> >JTA timeouts.
          >>> > I have observed this during the create() of a stateless session
          >bean,
          >>> >but I have
          >>> >been "told" that it happens randomly. This has NEVER happend in
          >the
          >>> >test environment.
          >>> >
          >>> >Some of the session EJB create() methods are calling 4 other EJBs.
          >> I
          >>> >know that
          >>> >JNDI look ups are costly (average between 320ms and 550ms) but that
          >>doesn't
          >>> >get
          >>> >us to 33 seconds.
          >>> >
          >>> >Now for the constraints:
          >>> >We are not allowed to have an initial pool of EJBs (don't ask).
          >>> >We are not allowed to have local interfaces on the EJBs (don't ask).
          >>> >
          >>> >I am not allowed to see the source code (don't ask) to find out if
          >>a
          >>> >UserTransaction
          >>> >has been set.
          >>> >
          >>> >Some questions:
          >>> >If a UserTransaction has not been set, will WebLogic ALWAYS create
          >>the
          >>> >the other
          >>> >EJBs that the stateless session bean calls on the same server
          >>(collocated)
          >>> >instance
          >>> >or will they go across the wire to the next available server (because
          >>> >of the remote
          >>> >interfaces and the home objects having the load balancing logic)?
          >> (Note:
          >>> >the
          >>> >EJB descriptor may have transaction delineation defined on the EJBs
          >>participating
          >>> >in the transaction and the configuration we are using only provides
          >>round
          >>> >robin
          >>> >load balancing).
          >>> >
          >>> >Will the home objects requested by the session bean be created on
          >>the
          >>> >server the
          >>> >code is currently running (collocated) on or will any server with
          >>the
          >>> >distributed
          >>> >JNDI tree be allowed to provide the home object?
          >>> >
          >>> >If the above could happen, then paragraph 2 on page 4-10 of
          >>"Understanding
          >>> >Object
          >>> >Clustering" (Bea WebLogic Server 6.0) might come in to play where
          >>we
          >>> >have remote
          >>> >replicas adding to network overhead for the duration of the transaction.
          >>> > Since
          >>> >the processors on all the boxes appear to be more or less idle and
          >>there
          >>> >is loads
          >>> >of RAM available... Also I was "told" this only happens under load
          >>(100
          >>> >simultaneous
          >>> >hits).
          >>> >
          >>> >Could we be falling into a convoying condition? Does the whole cluster
          >>> >stop when
          >>> >this condition happens or does just the single instance stop? If
          >>we
          >>> >have one
          >>> >server participating in the same transaction as another server would
          >>> >that stop
          >>> >the whole cluster? If we have 4 EJBs and load balancing decides
          >all
          >>> >servers are
          >>> >participating in the same transaction (round robin on 4 servers gets
          >>> >all of them
          >>> >in the game), would that stop the whole cluster while data I/O flows
          >>> >across the
          >>> >wire?
          >>> >
          >>> >When an initial instance of an EJB is created (initial pool size),
          >>does
          >>> >the entire
          >>> >cluster get informed or does each server independantly manage its
          >>own
          >>> >pool? What
          >>> >about EJB instances when replica-aware EJBObject stubs are used.
          >>Documentation
          >>> >states that the stub is free to route any call to any server that
          >>hosts
          >>> >the bean,
          >>> >could this also bring more than one server into the same transaction?
          >>> >
          >>> >Other groups are looking into HTTP Session replication as a possible
          >>> >cause...
          >>> >
          >>> >Thanks for any thoughts,
          >>> >Ian
          >>>
          >>
          >>
          >
          

Similar Messages

  • When I log onto my macbook, my user account isn't showing up. All that shows up is a gray screen with only two boxes saying "Name" and "Password". How do I fix this?

    There was one time where my wi-fi wasn't connecting so I tried to turn it back on. A window popped up but I had alrdy clicked enter before I read it, but it said something like "...will change settings, is that okay...?" And then wi-fi still would not connect. So I tried restarting my computer, but when it turned on, my user account did not show up and all there was on the screen was two boxes that asked for name and password. I was the only person using my macbook so I never set up a password for it. Has anyone had this problem? How do I fix this?

    Since I'm not in front of your computer I can't tell what you see - I can only guess and give a hint. So once again, if the disk name on your Mac is "Macintosh HD", when you boot in Recovery Mode, and start up the Terminal in "Utilities" menu, and then type in the command:
        df -k
    you should see a list of "volumes" - one of which is named "/Volumes/Macintosh HD" (but yours could be anything) and in that folder there is another folder called "Users" and in that folder is the names of the home directories of the user accounts (and the names that you can enter into the login screen) that you are looking for. So if you are not familiar with using the Terminal you should say so and I can give more details. But assuming you're OK with typing in commands to theTerminal this is what I would try:
        ls -l /Volumes/Macintosh HD/Users
    and you should see something like the following (my disk name is "Yosemite" so I typed "ls -l /Volumes/Yosemite/Users")
    ML9Book:~ xxxx$ ls -l /Volumes/Yosemite/Users
    total 0
    drwxr-xr-x+  11 Guest      _guest   374 Oct 25 19:23 Guest
    drwxr-xr-x+  33 Jack       staff   1122 Oct 24 10:49 Jack
    drwxrwxrwt   13 root       wheel    442 Dec 27  2013 Shared
    drwxr-xr-x+  38 admin      staff   1292 Oct 25 16:59 admin
    drwxr-xr-x+  15 x13        staff    510 Oct 23 22:41 x13
    drwxr-xr-x+  12 514        staff    408 Oct 23 12:24 x14
    So now reboot your mac into normal mode - and you will see the login screen with the two empty boxes.
    So the above output tells me that there are 3 users - Jack, x13 and x14 (there is always a Shared user and there might or might not be a Guest user since it depends on how your setup was setup) - and these 3 are the names that I could try and enter into the login screen (in the top or first box). You can try no password, but I don't think you can create accounts without passwords, so this will likely fail. In that case you need to reboot in recovery mode and run the Terminal command again (from the Utilities menu) and do a resetpassword command. Another window will pop up and from there you select the Volume (in my case I selected the Yosemite volume - in your case you would select the "Macintosh HD" if that is what your volume name is). Then select the user account you want to reset the password from the drop-down list of user accounts (it will show you the long and short names, and the short name is what was in the listing above from the "ls -l" command), then enter the new password in the indicated box, and then enter it again in the next box, to make sure you didn't make a typo, and enter a password hint in the last box (optional). Then click the "Save" button and you will see another dialog box pop up telling you that the password was changed but not the Keychain password (hopefully you remember this one) - click the OK button then reboot back in normal mode (click on the Apple logo in the top left corner of the screen and click on Restart).
    Does this help?

  • I am trying to install windows 7 to my Macbook pro with bootcamp but every time I open bootcamp I am only able to check the first two boxes but not the third one saying "install or remove Windows 7", any solutions ?

    Hi, I am trying to install Windows on my MacBook Pro with bootcamp. Every time I open bootcamp I am only able to check the first two boxes but not the third one saying "install or remove Windows 7". I did this before using the same computer and the same hard drive so I am not sure why this is happening now but did´t happen then. Any solutions ?

    Was your Bootcamp info.plist manipulated to change any options?

  • Re: if weblogic can serve two ports at the same time?

    That's not true. WebLogic supports a non-secure and secure listener port at the
    same time. That was one of the selling points for my organization.
    Michael Girdley wrote:
    If, you mean the same port on two different IP addresses, then the answer is
    yes.
    If, you mean two different ports on the same IP address, then the answer is
    no.
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    fxy <[email protected]> wrote in message
    news:8fdk99$t9$[email protected]..
    <URGENT QUESTION>
    I'd like to know if weblogic can support two ports at the same time.
    thank you in advance.
    <URGENT QUESTION>

    Well, the question was really meant to see if any change was made to WL to support
    this, not because I didn't believe Michael Girdley.
    P.S., this is something Websphere 4.0 let's you do...In case this encourages someone
    to add this support.
    "Mike Reiche" <[email protected]> wrote:
    >
    If you don't believe Michael Girdley, then I don't know why you would
    believe anyone
    else. I believe the answer is still 'no'.
    Why do they 'have to be on different ports'? We block requests by URI
    - so just
    block all requests to /youradminapp/* at the firewall. Or you can block
    them at
    your Web Server. Or restrict them by user in WL.
    Mike
    you"Anil Arora" <[email protected]> wrote:
    Is it still true that WL 6.0 cannot host multiple (non-secure) HTTPports
    on one
    server? We need this capability within one JVM to allow one web application
    to
    be accessed from one port while another through a second port. Forexample,
    we
    have a application to be exposed through the firewall at port 7001.
    Then we have
    another admin application to only be accessed within the firewall. But
    they need
    to be deployed within the same JVM since they may have shared statebetween
    them.
    Thanks,
    Anil
    "Michael Girdley" <[email protected]> wrote:
    I'm sorry, to clarify my statement: I was speaking about nonsecure
    communications. Weblogic can only support one listener port at a time.
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    Allen Akers <[email protected]> wrote in message
    news:[email protected]...
    That's not true. WebLogic supports a non-secure and secure listenerport
    at the
    same time. That was one of the selling points for my organization.
    Michael Girdley wrote:
    If, you mean the same port on two different IP addresses, then
    the
    answer is
    yes.
    If, you mean two different ports on the same IP address, then theanswer
    is
    no.
    Thanks,
    Michael
    Michael Girdley
    Product Manager, WebLogic Server & Express
    BEA Systems Inc
    fxy <[email protected]> wrote in message
    news:[email protected]...
    <URGENT QUESTION>
    I'd like to know if weblogic can support two ports at the same
    time.
    thank you in advance.
    <URGENT QUESTION>

  • Testing ha-nfs in two node cluster (cannot statvfs /global/nfs: I/O error )

    Hi all,
    I am testing HA-NFS(Failover) on two node cluster. I have sun fire v240 ,e250 and Netra st a1000/d1000 storage. I have installed Solaris 10 update 6 and cluster packages on both nodes.
    I have created one global file system (/dev/did/dsk/d4s7) and mounted as /global/nfs. This file system is accessible form both the nodes. I have configured ha-nfs according to the document, Sun Cluster Data Service for NFS Guide for Solaris, using command line interface.
    Logical host is pinging from nfs client. I have mounted there using logical hostname. For testing purpose I have made one machine down. After this step files tem is giving I/O error (server and client). And when I run df command it is showing
    df: cannot statvfs /global/nfs: I/O error.
    I have configured with following commands.
    #clnode status
    # mkdir -p /global/nfs
    # clresourcegroup create -n test1,test2 -p Pathprefix=/global/nfs rg-nfs
    I have added logical hostname,ip address in /etc/hosts
    I have commented hosts and rpc lines in /etc/nsswitch.conf
    # clreslogicalhostname create -g rg-nfs -h ha-host-1 -N
    sc_ipmp0@test1, sc_ipmp0@test2 ha-host-1
    # mkdir /global/nfs/SUNW.nfs
    Created one file called dfstab.user-home in /global/nfs/SUNW.nfs and that file contains follwing line
    share -F nfs &ndash;o rw /global/nfs
    # clresourcetype register SUNW.nfs
    # clresource create -g rg-nfs -t SUNW.nfs ; user-home
    # clresourcegroup online -M rg-nfs
    Where I went wrong? Can any one provide document on this?
    Any help..?
    Thanks in advance.

    test1#  tail -20 /var/adm/messages
    Feb 28 22:28:54 testlab5 Cluster.SMF.DR: [ID 344672 daemon.error] Unable to open door descriptor /var/run/rgmd_receptionist_door
    Feb 28 22:28:54 testlab5 Cluster.SMF.DR: [ID 801855 daemon.error]
    Feb 28 22:28:54 testlab5 Error in scha_cluster_get
    Feb 28 22:28:54 testlab5 Cluster.scdpmd: [ID 489913 daemon.notice] The state of the path to device: /dev/did/rdsk/d5s0 has changed to OK
    Feb 28 22:28:54 testlab5 Cluster.scdpmd: [ID 489913 daemon.notice] The state of the path to device: /dev/did/rdsk/d6s0 has changed to OK
    Feb 28 22:28:58 testlab5 svc.startd[8]: [ID 652011 daemon.warning] svc:/system/cluster/scsymon-srv:default: Method "/usr/cluster/lib/svc/method/svc_scsymon_srv start" failed with exit status 96.
    Feb 28 22:28:58 testlab5 svc.startd[8]: [ID 748625 daemon.error] system/cluster/scsymon-srv:default misconfigured: transitioned to maintenance (see 'svcs -xv' for details)
    Feb 28 22:29:23 testlab5 Cluster.RGM.rgmd: [ID 537175 daemon.notice] CMM: Node e250 (nodeid: 1, incarnation #: 1235752006) has become reachable.
    Feb 28 22:29:23 testlab5 Cluster.RGM.rgmd: [ID 525628 daemon.notice] CMM: Cluster has reached quorum.
    Feb 28 22:29:23 testlab5 Cluster.RGM.rgmd: [ID 377347 daemon.notice] CMM: Node e250 (nodeid = 1) is up; new incarnation number = 1235752006.
    Feb 28 22:29:23 testlab5 Cluster.RGM.rgmd: [ID 377347 daemon.notice] CMM: Node testlab5 (nodeid = 2) is up; new incarnation number = 1235840337.
    Feb 28 22:37:15 testlab5 Cluster.CCR: [ID 499775 daemon.notice] resource group rg-nfs added.
    Feb 28 22:39:05 testlab5 Cluster.RGM.rgmd: [ID 375444 daemon.notice] 8 fe_rpc_command: cmd_type(enum):<5>:cmd=<null>:tag=<>: Calling security_clnt_connect(..., host=<testlab5>, sec_type {0:WEAK, 1:STRONG, 2:DES} =<1>, ...)
    Feb 28 22:39:05 testlab5 Cluster.CCR: [ID 491081 daemon.notice] resource ha-host-1 removed.
    Feb 28 22:39:17 testlab5 Cluster.RGM.rgmd: [ID 375444 daemon.notice] 8 fe_rpc_command: cmd_type(enum):<5>:cmd=<null>:tag=<>: Calling security_clnt_connect(..., host=<testlab5>, sec_type {0:WEAK, 1:STRONG, 2:DES} =<1>, ...)
    Feb 28 22:39:17 testlab5 Cluster.CCR: [ID 254131 daemon.notice] resource group nfs-rg removed.
    Feb 28 22:39:30 testlab5 Cluster.RGM.rgmd: [ID 224900 daemon.notice] launching method <hafoip_validate> for resource <ha-host-1>, resource group <rg-nfs>, node <testlab5>, timeout <300> seconds
    Feb 28 22:39:30 testlab5 Cluster.RGM.rgmd: [ID 375444 daemon.notice] 8 fe_rpc_command: cmd_type(enum):<1>:cmd=</usr/cluster/lib/rgm/rt/hafoip/hafoip_validate>:tag=<rg-nfs.ha-host-1.2>: Calling security_clnt_connect(..., host=<testlab5>, sec_type {0:WEAK, 1:STRONG, 2:DES} =<1>, ...)
    Feb 28 22:39:30 testlab5 Cluster.RGM.rgmd: [ID 515159 daemon.notice] method <hafoip_validate> completed successfully for resource <ha-host-1>, resource group <rg-nfs>, node <testlab5>, time used: 0% of timeout <300 seconds>
    Feb 28 22:39:30 testlab5 Cluster.CCR: [ID 973933 daemon.notice] resource ha-host-1 added.

  • Creation of diskset in Two node cluster

    Hi All ,
    I have created one diskset in solaris 9 using SVM in two node cluster.
    After diskset creation, I mounted the diskset in a primary node in the mount point /test. But, the disk set is mounting on both the nodes.
    I created this diskset for failover purposes, if one node goes down the other node will take care.
    My idea is to create a failover resource (diskset resources) in the two node cluster.
    Below are steps used for creating the disk set.
    root@host2# /usr/cluster/bin/scdidadm -L d8
    8        host1:/dev/rdsk/c1t9d0   /dev/did/rdsk/d8
    8        host2:/dev/rdsk/c1t9d0   /dev/did/rdsk/d8
    metaset -s diskset -a -h host2 host1
    metaset -s diskset -a -m host2 host1
    metaset -s diskset -a /dev/did/rdsk/d8
    metainit -s diskset d40 1 1 /dev/did/dsk/d8s0
    newfs /dev/md/diskset/rdsk/d40
    mount /dev/md/diskset/dsk/d40 /test
    root@host2# metaset -s diskset
    Set name = diskset, Set number = 1
    Host                Owner
      host2                  Yes
      host1
    Mediator Host(s)    Aliases
      host2
      host1
    Driv Dbase
    d8   YesPlease let me know how to mount the disk set in one node.
    If i am wrong, please correct me.
    Regards,
    R. Rajesh Kannan.

    The file system will only mount on both (all) nodes if you mount it globally, i.e with the global flag or if there is an entry in /etc/vfstab that has a global option.
    Given your output below, I would guess you have a global mount for /test defined in /etc/vfstab.
    Regards,
    Tim
    ---

  • The box {cannot use app in safe mode} would you like to temporarily switch, I press continue and it goes to please log in, and these two boxs go back and forth not allowing me to continue the game like farmville etc.

    the dialogue box says {we cannot continue with this app in a secure mode. Would you like to temporarily disable to an unsecured mode and you will be able to use the app at your next log in.} I push the "Continue" button, not the cancel button and it tells me to {Please log in, you are not logged in}. I will then log in and the original window as mentioned above comes back again. These two boxes go back and forth when I try to continue in any of the games on Facebook.

    Hi thanks for all the concern and replies. I've tried all that.
    I had just got it back from the shop last Friday. It was there for around two weeks. It was a faulty GPU (when you see garbled display that's consisten when booting it the GPU). I have a strong feeling it's related to the Lion install 10.7 or 10.7.1 and may be similar to reports of Mac laptops overheating. It's good the GPU is removable, it might have taken 3 week or a month if it had been the whole board.
    It's a blessing in disguise though as with all or most cases because I also got to have the LCD replaced for excessive backlight bleeding (in my opinion), the dead pixel from the previous LCD isn't there anymore (though under the glass there're some smudges but nothing crucial). The backlight bleeding is still the same though in my opinion but at least it's new.
    It's a great thing I bought Applecare. I didn't buy it for the iPhone because that's more durable (my iPhone 3G's 3 years old now and it's still solid. Although there are scratches and a crack at the back at the bottom, got sqeezed under the table I think when I sat). I think Applecare is a good recommend for things that get hot like desktop and laptop Macs(are the iOS considered Macs btw?) which are twice or thrice the price of iOS devices.
    Gbu.

  • Creating a Two Node Cluster

    Good afternoon,
    I'm looking to build/create an inexpensive two node cluster. I have a SLES11SP1 server that is running XEN as a virtual hosting server, I run about five servers in a virtual environment. I have three USB drives set up to host my Guest servers, what I would like to do is to purchase another USB drive, so that I can use that as an iscsi/SAN server location, it would be 2TB in size, and then I would build my new servers making them cluster enabled. They should then be able to "see" the SAN/iscsi/storage location.
    Does anyone have any further suggestions?
    Thanks
    -DS

    Originally Posted by gleach1
    while I wouldn't recommend running servers off USB drives (unless this is for testing), I don't see any issue in doing it but the performance may not be fantastic
    I really appreciate your responding back and assisting in this testing. This cluster is for testing only, I have a small server farm in my basement, and I have a customer that is using clustering and I would like to at least be able to have something to test with
    I've actually run a test cluster off a USB drive using vmware workstation before and it seemed to run fine just as a test system
    If you set up your xen host as an iscsi server, use the USB disk as the storage you present to the guests and set them up with iscsi initiators it should work like any other iscsi san would, obviously a touch slower...
    Is there some documentation that explains how to do the iscsi server setup that you described? I have the "Configuring Novell Cluster Services in a XEN Virtualization Environment" but I really don't see anything about the iscsi initiator setup, I was going to add the USB drive as a /storage volume on the XEN host, and then point the cluster to that? I will also be adding a third card to handle the clustering network.

  • Adding two boxes in same branch group

    Hi,
    I am new to Java3D. I want to add two boxes in same branch group at different location so that both of them are visible simultaneously. Can i achieve it?
    Thanks and regards,
    Rahul

    Thanks.
    But Still i have problem. Probably i was not clear earlier. My problem is not just to add these boxes. But in addition i want to same behaviours like Rotation, Zooming, Translation etc on all of these boxes. So that they all can be zoommed, translated, rotated by equal factor simulataneously.
    Please help me.
    Thanks lot
    Regards
    Rahul

  • Hw to come two boxes in a frame of selection screen

    Hi Experts,
    hw do  two boxes come in a frame of selection screen.
    plz suggest.
    with regards.....
    sunil

    Use SELECTION-SCREEN ..BLOCK
    press F1 on SELECTION-SCREEN you'll get syntax..
    SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETERS : r1 RADIOBUTTON GROUP grp1.
    PARAMETERS : r2 RADIOBUTTON GROUP grp1.
    PARAMETERS : r3 RADIOBUTTON GROUP grp1 DEFAULT 'X'.
    SELECTION-SCREEN: END OF BLOCK b1.
    SELECTION-SCREEN SKIP 2.
    SELECTION-SCREEN: BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
    PARAMETERS : r3 RADIOBUTTON GROUP grp2.
    PARAMETERS : r4 RADIOBUTTON GROUP grp2.
    PARAMETERS : r5 RADIOBUTTON GROUP grp2 DEFAULT 'X'.
    SELECTION-SCREEN: END OF BLOCK b2.

  • Do I need 3 machines for Sun Two-Node Cluster HA for Apache?

    The vendor is trying to set up a Sun Cluster HA for Apache and said it requires a dedicated machine
    for monitoring purpose(The Sun Cluster HA for Apache probe??). Is this monitoring machine mandatory and have to be dedicated for that purpose? And can I use 1 machine to monitor more than 1 cluster? Because the vendor requires 2 extra machine to monitor 2 set of 2-node cluster..and the document I read from Sun only mentions the 3rd machine is required for admin console.
    Also, if I only have 2 node cluster, can I configure Apache as a scalable + failover service at the same time or I have to choose either one? Thanks!!

    Incorrect. You can set up a Solaris Cluster on a single node if you wish although two nodes give you redundancy. The probe for Apache runs from the node on which Apache is executing.
    If you have a two node cluster you could have multiple implementations of Apache: fail-over and scalable. You can mix them until you run out of resources: CPU, networking bandwidth, IP addresses, etc.
    Tim
    ---

  • New Howto guide available: HOW to INSTALL and CONFIGURE A TWO-NODE CLUSTER

    Hi,
    I am not sure that this has been posted or not. But for all of us who are too lazy (like myself) to read the full set of documentation, or who have not enough time, please have a look at this short document with screen shots that explains how to setup a simple two-node cluster.
    http://www.sun.com/software/solaris/howtoguides/twonodecluster.jsp
    I still recommend to browse through the "Sun Cluster Concepts Guide for Solaris OS" http://docs.sun.com/app/docs/doc/819-0421
    Have fun
    Hartmut

    I am afraid there is no such document. But I can try to give you some hints.
    N+1 can be seen as two things:
    - the phsical setup of the cluster and
    - the logical configuration of services
    A physical N+1 setup would mean, that you have one server that is connected to all shared storage, but the other N nodes are only connected to the shared storage they need.
    This configuration would also need the logical N+1 setup, namely that all HA services could only run on 2 nodes, their primary node and as a backup this one dedicated node that is connected to all shared storage.
    If you do not have the physical N+1 setup, you could easily have a logical N+1 setup, by having a N*N topology, j.e. all nodes connected to all storage, but logically each service again would have only 2 nodes on its nodelist.
    It seems that the second option is the one that is used more often, as ift offers you the ability to reconfigure things in case of failures.
    With regards to asymmetric and symmetric I am not quite sure what you mean: And I do not think that these terms are used in the SC docs.
    What I can think of is, that asymmetric means that you have one node being active with 1 or more HA services and have one inactive secondary node as a backup.
    Regards
    Hartmut

  • How to install Enterprise manager on two node cluster

    Hi,
    I am new to Oracle working on 10g
    can anyone post a document or link for step by step installation of oracel 10g enterprise manager on a two node cluster?
    Thanks in advance.

    userArshad wrote:
    Thanks Hans.
    To be specific I have to install Database control .that means I need to use the GUI .
    Also I could see database control and DBconsole service on on 1st node but I cannot find that in 2nd node.That is the normal configuration - you use the DB Control from node 1 and it gets the information using the agent on Node 2. The DB Console then displays the information for both nodes.
    Please note that the DB Control will place a relatively heavy load on each machine, which is why we want to restrict our load to the agent. It is for that reason that we prefer to use the Grid Control whenever possible - it provides the same mechanism and screens, but the JEE platform is on a separate machine and all you have on the RAC nodes is the agent.
    But if you really want to run the DB Console from each node (again, not normally needed) you need to use emca to configure it on the second node. Metalink note 863631.1 should help you with that.

  • There is no trash can at the bottom of my iphone5 when trying to delete photos.  so how do you do it.  it has two boxes, share and add to

    When trying to delete photos from my iphone 5, there is no trash can at the bottom, only two boxes one says share the other add to.  So how do you delete photos

    he only photos that would have the trash can are those that you take with the iPhone camera. Other photos are handled through the sync process in iTunes.

  • Java application to call BOXI cluster report server

    Dear all,
    We have a BOXI 3.1 cluster consisting of 2 servers, says server1 and server2.
    Which server should the java application call to? server1 or server2? I don't realize there is BOXI cluster common hostname that can be resolved by DNS.
    If the application calls to server1, what if server1 is down?
    Many thanks

    For the Java version of the BusinessObjects Enterprise SDK starting with XI 3.x, CMS members and their "Name Server Port" are persisted by the SDK in the file %HOME%\.businessobjects\clusterinfo.1200.properties file.    This file is read when SessionMgr is instantiated.
    When logon method with a CMS member name/port is invoked, it's looked up to determine what cluster the member belongs to, as recorded in the properties file.  Then a random CMS member from that cluster is selected, and connection is attempted to that CMS Name Server.
    So regardless of what CMS name you enter for the logon, it should at least fail over to a live one.
    The only issue happens if there's no clusterinfo.1200.properties file (i.e., fresh install on the SDK machine) or not accessible (if the process has no rights to access that file).  Then you have to ensure the CMS name you enter is to a live one.    If it's a fresh install and there's sufficient file access, the initial contact with a live CMS Name Service will retrieve all CMS members, and the SDK will update teh properties file.
    So you shouldn't have to worry about which CMS name you specify.
    Sincerely,
    Ted Ueda

Maybe you are looking for