WebLogic clustering within the box

          Folks,
          Is it possible to do weblogic clustering within a single UNIX box?
          For example,
          UNIX Machine A(10.9.44.25) have two domains mydomain1 and mydomain2.
          mydomain1 - AdminServer7001 - ManagedServer8001
          mydomain2 - ManagedServer9001
          Is it possible to clustering for ManagedServer8001 and ManagedServer9001?
          Thanks
          - Robot
          

          "Majic Robot" <[email protected]> wrote:
          >
          >Folks,
          >
          >Is it possible to do weblogic clustering within a single UNIX box?
          >
          >For example,
          >
          >UNIX Machine A(10.9.44.25) have two domains mydomain1 and mydomain2.
          >
          >mydomain1 - AdminServer7001 - ManagedServer8001
          >mydomain2 - ManagedServer9001
          >
          >Is it possible to clustering for ManagedServer8001 and ManagedServer9001?
          >
          >Thanks
          >
          >- Robot
          You can create a clustered environment on a single machine; limits to the numbers
          of managed servers within the cluster is a variable based on available machine
          resources (memory, file handles, kernel limits, etc.).
          You cannot create a cluster though as you suggest above. Recall that clusters
          are defined within a single domain, and you cannot create a cluster that spans
          (is split) between domains.
          To create a cluster on a single machine, you just need to keep the rule that each
          managed server has a unique ipaddress:port combination for its listening address.
          On a single machine you have the option of multi-homing the machine (eg multiple
          IP addresses on a single NIC) or use a single address, but use different ports;
          or use a combination of both.
          

Similar Messages

  • When you have a list or blog within a box on a page, how do you get it to scroll within the box.

    When you have a list or blog within a box on a page, how do you get it to scroll within the box?

    Thanks so much!  Whatever I was trying only worked randomly. You made my day!

  • 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
              >>>
              >>
              >>
              >
              

  • Printing a .pdf with "boxed" sections appearing as "white" and showing a "white" border to the "box"

    Dear Community,
    I have created a .pdf file from an email and then "boxed" sections of the document with a white border and a white fill, intending the recipient to be unable to see the text within the "box". However, when I print the document it appears as if the "boxed" sections did not exist. In other words, all the text in the email is printed. Can anyone help with a solution, please.

    You cannot create pdf files or forms in Adobe Reader. If you used Acrobat, please repost in that forum.

  • Out of the box my new Tablet Z2 wont take anny charge..

    Hi!
    Out of the box my new Tablet Z2 don't take any charge. I have charged it a few of hours now but the charging LED don't turn on.
    I have tested to charge my phone with the sony charger provided within the box and it works.
    I have also tested to charge with an other USB cabel but that dont seem to work either.
    Thanks for your help! // Oscar

    Before taking it back to the store you could just try to press and hold the power button and volume up at the same time until the tablet vibrates. Then try to start it up as normal again. If it still doesn't start, I would suggest that you follow the advice above and take it back to the store. 
    What are your thoughts about this forum? Let us know by doing this short survey.

  • Until today, on a particular site I access multiple times daily, the username was always present, until I checked box today, alway remember password. How do I get back to the username always present, without having to click the box?

    I really want the username and password info to stay in the respective boxes without having to do anything to get them there, like they have been the last three years until today. (This is on a site I access multiple times daily, and is not a site having any security issues).

    Double-click within the box, then for each incorrect user name, select it, and press "Del" key
    (Mac users will have to use "Shift+Del" instead of just "Del" key)

  • AP div tags/positioning within a box/can't do it/?

    *I've drawn a container box for my home page, into which I want to add an image, and then freely position my interactive/rollover buttons and/or images within the confines of that box.  I've got the background...and the box...but Dreamweaver will not let me draw an apdiv tag within the box.  I can draw outside the box, but get a circle with a slash when I try to draw within the box.
    I have a page online  www.bradmarsh.org.  I created it by just placing the image and then drawing the button boxes and placing them.  They are not placed relative to the confines of the box, so they move when I resize the browser.   Also..I might add...it's just a mockup.
    At this point, I still don't understand html, but I am starting to grasp it somewhat.  If I can solve this little issue, I can carry on with creating my own site.
    Help??
    Thank you

    I've drawn a container box for my home page,
    DW is not a graphics application with which you freely draw boxes on a workspace.  It's pro-level web authoring software that requires you to possess a working knowledge of  Web Design concepts, HTML and CSS code.
    Close DW.
    Spend some time learning CSS and XHTML first.
    Then work through this 3 part tutorial:
    Taking a Fireworks comp to a CSS Layout in DW
    Part 1 - Initial Design
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    Part 2 - Markup preparation
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt2.html
    Part 3 - Layout and CSS
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt3.html
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Is there a way to create a link within a document that will pull text from the document and open it up in a separate text box within the document?

    I am trying to link sections of an form within a PDF back to instructions within the same PDF document.  Instead of having this jump back to the page within the document I would like for it to pull up the identified text within a separate pop-up text box on the same page where the form lives.  Is this possible?

    Hi gwebster,
    Instead of linking back to the instructions page, may be you can use tool tips or comments so that the instructions can be seen besides the text.
    Regards,
    Rave

  • Text wrap for a paragraph: How to define the width of a Text box /  active text area? I simply need a longish text to wrap within the frame!

    Hello, I've been searching for a good while in the forums now, but have found no solution or real mention of the problem – I hope some of you can help.
    I want to very simply layout a text between scenes, a slightly longer text that wraps within the frame margins. Here's an example of how I want it to look:
    Now, I couldn't for the life of me get the Custom Text to behave like that, as there are no parameters to set for the width of the text area. The Text Size, yes, along with the Tracking, Baseline and all that, but the width of the text box, no. The above was created by customizing one of the other Text Generator presets that happened to be left aligned.
    However, this preset has a fade in/fade out transition, which I do not want. There's no way to remove this transition as it seems integrated into the Text Generator (meaning they are not really presets, but separate kinds of Text objects? Very silly.)
    So I am asking you: Is there any way to get the Custom Text generator to behave like that? Just a text paragraph as above. Below you'll see all I can manage with the diffferent Custom Text parameters. Any kind of repositioning and resizing of the text just changes the position and size of the frame – but the actual text items are just cropped off where they extend out of that frame. Apparently the bounding box for the text is just some default length, and I can't find any way to adjust the width. See below my different attempts.
    The same text pasted into a Custom Text generator clearly extends outside the frame:
    Here Transform just moves – or resizes – the video frame that the Text Box exists inside:
    The Crop gives similar results, and of course Distort doesn't get me closer to what I need, either. There should be simply a Text Box Width parameter to set somewhere, but if it exists they have hidden it very well. How do you do it?
    Thanks for any help, this is a silly problem, but one of now many trivial problems that amount to me growing quite dissatisfied with FCPX. Hopefully I've just overlooked something.
    All the best,
    Thomas

    Thomas...same kind of crap here.
    I used Custom Text - entered a sentence, hit return, entered another.
    Set to 72 pt.
    The default alignment is centred - I want left aligned text...the text start point stays at the centre of frame and the sentence runs off the edge of the bounding box.
    There is no settings in the Text or Title inspector dialog to correct that!
    Using Transform will not sort it!

  • I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content)

    I just statred Flash CC for the first time and it seems that the text within the pop-up window (dialog box) is mis-aligned and not allowing me access to the command buttons, nor all the text. (ie: the NEW Template Box, can't see but 2/3 of the content) is there a fix to this problem? using 8.1, Monitor is a high res.2560x1440.

    Another View.
    the GUI is so hard to read (so small) I enlarge my Ps UI by the instructions below...which helped a lot.

  • I contacted apple on the 28th of october for a repair on my ipod as it is no longer working. On my repair status it says empty box shipped and it should arrive within 2 business days. It is now Friday and the box still hasnt arrived.

    Should i contact apple about this? does the box need to be signed for? do i need to be here when it arrives? how big is the box? and does anybody know how long it will take for the ipod to be returned?

    For my experience i shipped my ipod on a monday, they had it for tuesday and got it back on wendesday but this is because apple put my ipod on express shipping with ups but dont worry about it you should be getting it within this weekend and no you don't have to sign for it, the package is fairly small. If the delivery truck goes by your house and no one is home they will leave a notification on your door saying so and on the paper will be options to eighter make a delivery date where you will be available, or tell them to withhold a package for you at one of thier locations and pick it up. If you choose to pick it up you will require to bring a state id with you that has your current adress. Hope this helps somewhat.

  • How do i send hyperlink to a text box within the same page

    how do i send hyperlink to a text box within the same page on iweb

    It's called an anchor. It's often discussed in this forum.
    2 days ago : anchor
    Here's a search of the past year : anchors

  • After placing a new text box in my document, typing new text, clicking away, then coming back to edit the text, I am unable to get my cursor to reappear within that text box. I can only select the box itself. I cannot select the text. Where is my cursor?

    After placing a new text box in my document, typing new text, clicking away, then coming back to edit the text, I am unable to get my cursor to reappear within that text box. I can only select the box itself. I cannot select the text. Where is my cursor?

    Even simpler than that.
    Clicking once in a text box selects it.
    Clicking once in a selected text box places the insertion point in the box.
    The clicks do not need to be close enough in time to be read as a double click.
    The same behaviour applies to table cells in Pages and in Numbers.
    Regards,
    Barry

  • Search Results Are Highlighted Within The Text Box? How ? Access 2013

    Hi Every one ,
    Below I am describing some coding issue in VBA-MS Access I am facing right now , and I hope u guys could help me resolve the issues :
    DB : MS access 2013 - RichTextBox In A Form -
    Language : VBA
    Problem In short : struggling to highlighting user search word within the search result query ..
    What I want :
    Helping to fix the second code shown below , the one I used to highlight ( reformat ) the text who's bound to a a field that store memo data type . code
    My Result Search Query VBA COde ( Work perfectly )
    strWhereToSearch = IIf(.framSearchIn.Value = 1, "[quknotSubject]", "[quknotBody] ")
    strCondition = strWhereToSearch & " Like '* " & strTextSearch & " *' OR " & _
    strWhereToSearch & " Like '" & strTextSearch & " *' OR " & _
    strWhereToSearch & "Like '* " & strTextSearch & "'"
    strSql = " Select * from qryExtraTool_QuickNoteSubCatMainCat "
    strSql = strSql & " WHERE " & strCondition & " ORDER BY quknotDate"
    The code that i am struggling to make it work for me to highlight the search word inside the textbox called .txtQuickNoteBody :
    'Control Source for the text box to display matches.
    Const strcTagStart = "<font color=""""red"""">"
    Const strcTagEnd = "</font>"
    strControlSource = "=IIf(" & strField & " Is Null, Null, " & _
    "Replace(" & strField & ", """ & strSearchValue & """, """ & _
    strcTagStart & strSearchValue & strcTagEnd & """))
    .txtQuickNoteBody.ControlSource = strControlSource
    Thank u all in advance .

    Thank u so Bruce , I finally found an answer to my question.
    The solution u provided looks complete except that i am confused by the meaning of strField , may i didnt provide more details in my  post .
    The strField var i provided earlier was not meant to be placed in my code  , the correct one is shown below .However , the strField means according to me is the field against which the search operation should take place based on the ( search Term )
    the user provided . 
    Here is the code after applying the solution u suggested :
    'Information collected from the user      
     strWhereToSearch = IIf(.framSearchIn.Value = 1, "[quknotSubject]", "[quknotBody] ")       
    strCondition = strWhereToSearch & "  Like '* " & strTextSearch & " *' OR " & _
    strWhereToSearch & " Like '" & strTextSearch & " *' OR " & _ 
    strWhereToSearch & "Like '* " & strTextSearch & "'" 
    'Fill result search  Recordset      
    strSql = " Select  * from qryExtraTool_QuickNoteSubCatMainCat   "         
    strSql = strSql & " WHERE   " & strCondition & "  ORDER BY quknotDate"  
    'Control Source for the text box to display matches. ( Highlight the search word )     
    txtQuickNoteBody = SearchHilight(strWhereToSearch, strTextSearch)
    Tell me if my implementation to your code is right ?
    Thank u again Bruce ...

  • Scrolling boxes within the website?

    I'm not sure how to explain this, so hopefully you get what I'm trying to ask.
    I recently borrowed an iPad to figure out if it was worth the investment. If it was just for me, its shortcoming wouldn't matter.
    But my girlfriend is going to use it for work. This is another coversation, so I'll get to my problem.
    If I go to a page with a scrollable box, I can't scroll in the box. Is it because it's flash based or something?
    Example; My girlfriend goes to check the yoga schedule at her studio, she can't scroll the box with the schedules.
    So she only sees the schedule 6am to 12pm. It seems frozen.
    A few other important sites reveal similar issues with the iPad.
    I've tries two finger scrolling, didn't work.
    I know there is an app that enables you to browse flash via a cloud or something. Would this solve the scrolling issue?

    I am unable to scroll within that box in any browser. I don't think it is a Flash issue but. You can access all of the links that you can see and all of that content is visible. For whatever reasons, the site appears to not be totally compatible with the iPad. I tried the site with the iCab browser as well. iPad 1 or 2 does not matter. Mine is the original iPad. I know of no app that would allow you to access the content that you cannot scroll down to within that box other than a remote app that allows you to use your PC or Mac remotely. Those apps are available but I don't think that is what you have in mind.
    Good luck with the "other conversation" no matter what happens with this web site issue.

Maybe you are looking for

  • Screen Sharing and Talktalk UK

    Apologies if this duplicates what others have said. I've spent a lot of time trawling through here but I'm wondering particularly if the problem I'm having might be related to talktalk, my dad's provider. 1. I have an intel iMac running leopard. Comc

  • Numbers are not showing if i dial in phones

    Dear All when i make for service number for any company and i hear 1 for english 2 for arabic , when i press any number 1 or 2 .... any numbers , there is not showing me in the phone when i dial , there is solution about that ?

  • Hide certain steps in the execution view

    I am trying to modify the TestStand 4.0 simple OI using C# 2005 for the OI and LabVIEW 8.2.1 for the test development. In many ways, there is more on this "simple" interface than an operator needs to see. The execution window is too verbose.  I would

  • Intermedia queries..

    i would like to know, if any solution for this... A. When interMedia process runs at background, it requries user name and password, and the username and password will be shown in background process when you use ps command. This could be a security p

  • NEED Help Importing new Activities.

    Hi All, I am working on a project where I have been asked to add two new activities to all the 841 WBS codes belonging to the project. That means I have to add around 1600 new activities. So instead of going through the tedious task of adding those m