OBIEE on RHEL5.5 using clustering of 4 nodes deployed on weblogic

It is my first experiance of installaing OBI in production enviornament. I have to install OBIEE 10.1.3.4.1 on four IBM HS22 Blade Servers, under RHEL 5.5, deployed on Weblogic in active/active configuration. Weblogic will be clustered. I am confused of steps of installation, please rectify me if following steps are wrong:
Step 1: install Weblogic on Node1, and configure clustering of Weblogic on other 3 nodes.
Setp 2: Install OBIEE on all 4 nodes. Complete installation, not specific products, using Advanced installation type. so that all componets are installed on all the nodes
Step 3: Configure clustering of OBIEE keeping Node1 as Master BI Server, Primary Cluster Controler, Primary scheduler.

i am plaining for complete installation on all the nodes but while doing configuration in files NQSConfig.INI and NQClusterConfig.INI etc, i will do like
Node1 as primary node for cluster and scheduler and Presentation Services and Master BI Server
Node2 as secondary node for cluster and scheduler and Presentation Services and BI Server
Node3 as BI Server
Node4 as BI Server
I can install only one component BI Server on Node3 and Node4, but to keep my installation straight farward i am installing complete on all nodes. please suggest will it work. Or shall I proceed with complete install on Node1 and Node2, but custom install on Node3 and Node4
Regarding load balancing this has to be done by the cluster controler, please suggest if i am wrong. I have a separate WebServer which i need to configure.

Similar Messages

  • OBIEE 11g, installation using a new middleware home, created a new weblogic

    Hi,
    We have a linux based machine with weblogic 10.3.5.0, already installed on it in the following folder. There are some applications that are deployed in this weblogic.
    /home/oracle/middleware
    While installatin of OBIEE 11.1.1.5, on this server we gave following middelware home:
    /home/oracle/OBIEE11g/
    This way OBIEE installer installed a new weblogic and node manager. Now two weblogic and two node managers are running on one machine. it was expected that OBIEE will create a new domain within existing weblogic, and will use the same one node manager.
    Is it possible to create a new domain in the first weblogic and move the deployemnt of OBIEE from 2nd weblogic to 1st weblogic in a separate domain. and then deinstall 2nd weblgoc and nodemanager which OBIEE11g installer has created.
    Regards,
    Sajid

    Hi Sajid,
    I'm not sure if this is possible. Is this a production envioronment? If not I would suggest you're better off backing up, reinstalling using the software only install into your original middleware home and then using the configuration assistant to set up obiee and finally migrating everything over. You have to be very careful with the middleware versions and patches.
    http://download.oracle.com/docs/cd/E21764_01/bi.1111/e10539/c1_overview.htm#BABEBGFA
    http://download.oracle.com/docs/cd/E21764_01/bi.1111/e10539/c5_postinstall.htm#CEGCJFIB
    Regards,
    Robert

  • Using XPath to create nodes

    Hi,
    Obviously the main use of XPath is to query the state of an XML document... the equivalent to a "select" statement in SQL.
    DOM4J has methods that allow you to use XPath as the equivalent to "insert" statements in SQL. You can specify an XPath like "/Hello/World/Value = 3" and apply this XPath to an XML document so that it creates something like this for you:
    <Hello>
    <World>
    <Value>3</Value>
    </World>
    </Hello>
    This is actually very useful for an investment banking application that I'm working on.
    The problem with DOM4J is that it doesn't handle attributes or conditionals well. If you specify
    /Hello[@name=2]/World = 3
    I would expect
    <Hello name=2>
    <World>3</World>
    </Hello>
    to be produced. Instead, it produces
    <Hello[@name=2]>
    <World>3</World>
    </Hello>
    These are all simple examples. What I'm doing in real life is using XPath to insert nodes into a complicated XML document that already has a lot of structure. I'm only adding one or two elements to big documents.
    Is there anything at all like this available in the JDK 1.5 release. I've had a good look, and XPath looks like it's only for queries. Is this correct?

    I think this might do what you need...
    // Create a dummy XML document
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    DocumentBuilder db = dbf.newDocumentBuilder();
    InputStream bais = new ByteArrayInputStream("<test><e1/></test>".getBytes());       
    Document doc = db.parse(bais);
    // Define the XPath expression to "select" the parent element in the document       
    XPath xpath = XPathFactory.newInstance().newXPath();
    XPathExpression xpathExpression = xpath.compile("/test/e1");    
    // Select the parent node (should probably chuck an ex if not present)       
    Node node = (Node) xpathExpression.evaluate(doc, XPathConstants.NODE);
    // Create and append the child element
    node.appendChild(doc.createElement("newElement"));
    // Convert the Document into a string
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    DOMSource source = new DOMSource(doc);
    StreamResult result = new StreamResult(baos);
    TransformerFactory transformerFactory = TransformerFactory.newInstance();
    Transformer transformer = transformerFactory.newTransformer();
    transformer.transform(source, result);
    // <?xml version="1.0" encoding="UTF-8"?><test><e1><newElement/></e1></test>
    System.out.println(baos.toString());

  • Use of multiple property nodes for GUI manipulation

    I have a LabVIEW 6.0.2 application where I'm using 14 different property nodes in the main loop. All of these have to do with GUI - hiding buttons when "X" isn't pressed, disabling and greying out controls if <0, popping one button on top of another depending on the mode of operation, etc, etc. While this works fine, the program is getting slow. I've noticed that using the old 2-D buttons works faster - things update faster and redraw quicker. However, more to the point, I once read that if you have to use a lot of Property Nodes like this, that you should bundle them into a sub-vi, thus replacing what would be Property Nodes with references. How does that make it faster?
    Richard

    Not sure if bundling them into a sub-vi by itself would make it faster. The nodes in the sub-vi would still have to access the user interface thread, and that's where the slow down comes from.
    When I use any property node, I put it in a case structure and only write to it when needed. You just need to be able to detect when the value being written is changed from last loop iteration. It's useless to constantly rewrite the same value (doesn't have to be the "value" property) to the node.
    Bundle them into a sub-vi and put the change detector, case structure and nodes in the sub-vi, this should help speed things up a bit. Assuming of course that the nodes are the slowdown. It may also help clean up the diagram a bit.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Call a special function in the dll using Call Library Function Node????

    Dear all,
          I am calling a special function in the dll using call library function node. There is a input parameter that it is a enum type in this function. I don't know how to deal this parameter for calling this function.Has anybody solved this problem?Please advise!
          I am appreciated of you anytime. 

    Most of the times an enum is just a U8/U16/U32, internally so probably you can call it with just a U8/U16/U32 or something. For the correct value you have to look at the definition.
    Ton
    Free Code Capture Tool! Version 2.1.3 with comments, web-upload, back-save and snippets!
    Nederlandse LabVIEW user groep www.lvug.nl
    My LabVIEW Ideas
    LabVIEW, programming like it should be!

  • Can we use OFFSETs in Hierarchy Node Variable in BEx ???

    Hi all,
      I have the need of using the OFFSETs in Hierarchy Node Variables. Can we use OFFSETs in Hierarchy Node Variable, PLEASE ???
        Thanks in advance.
    Regards,
    Venkat.

    I havent had such scenario - but I dont think you can do a offset on a hierarchy variable.

  • Uninstall Clustered Instance from Node

    I've installed SSAS 2012 as a failover cluster instance on a 2-node Windows 2012 R2 cluster.  All was fine in that regard but I now need to change the instance name so am going about the process of uninstalling and re-installing.  I've successfully
    removed the second node from the configuration using the "Remove cluster node" wizard from the Setup options, but when it comes to removing it from the final node I'm getting the error "the cluster group **** could not be moved from node x to
    node 'null'".  At this point the uninstall fails and the cluster resource remains in cluster administrator.  It's obviously done some work/damage because the service won't start now, but it's left in limbo land where I can't do anything with
    it.
    Is there a manual way of removing the instance to overcome this issue (file deletions, registry entry deletions etc.)?  (usual caveats regarding registry modifications accepted!) :)
    Many thanks
    Phil

    Play around with possible owners for SQL and dependencies for SQL network name and SQL IP to see if adding and remove helps.

  • Patch 9004119 to use Oracle RAC One Node Utilities

    Hi all,
    I am installing Oracle Grid Infrastructure (11.2.0.3), I am following DOC ug-raconenode-2009-130760.pdf, about RAC One Node installation, as Oracle recomendation, and this DOC talk about install patch 9004119 to use Oracle RAC One Node Utilities (such as Omotion). If I am using 11.2.0.3, is it necessary install patch 9004119 ?
    Thanks in advance.
    Leonardo.

    user10674190 wrote:
    Hi all,
    I am installing Oracle Grid Infrastructure (11.2.0.3), I am following DOC ug-raconenode-2009-130760.pdf, about RAC One Node installation, as Oracle recomendation, and this DOC talk about install patch 9004119 to use Oracle RAC One Node Utilities (such as Omotion). If I am using 11.2.0.3, is it necessary install patch 9004119 ?
    Thanks in advance.
    Leonardo.9004119:PATCH FOR RAC ONE NODE SCRIPTS can applied only on 11.2.0.1 , As you are in 11.2.0.3 so no need of it.

  • How to do OBIEE load testing using OATS

    Hi,
    As part of OBIEE load testing, i have down loaded OATS.
    Can i please know what protocol to use to perform OBIEE load testing.
    And how to perform OBIEE load testing using OATS ?

    You can use the web/http protocol for load testing the OBIEE.., Also please let me know if you face any issues using this protocol

  • Using LV Class Property Nodes in In-place Element structure causes the code to halt

    I have some code written in LV RT 2010 that uses property nodes from a LVOOP class that I created.  I am using access the property node from inside an in-place element structure.  When the code reaches the property node, LabVIEW stops running.  (as if the abort button was pressed).  I verified this behaviour using highlight execution.  When I remove the in-place structure code runs fine.
    Is this is know bug in LabVIEW?  Is there a CAR to resolve this created for a future release?

    Bob,
    I tried to reproduce the behavior you're seeing by recreating the Trigger and Trigger List classes, but I have not been able to reproduce it.  Please take a look at my version of the project in the attached zip file.  Take a look at Test.vi, and feel free to modify and repost it to show me how to make the problem occur.  I would like to file a CAR to make sure we get the problem fixed, but I will need to be able to reliably reproduce it first.
    On a similar note, you can get much better performance out of the Process Triggers VI by preallocating the list array, instead of using build array in a loop.  Take a look at Process Triggers2.vi in my project.  You can run Benchmark.vi to see the performance difference between the two different approaches.
    Chris M
    Attachments:
    triggerlist test.zip ‏165 KB

  • When I use Call Library Function Node in real time, is the DLL loaded once for all or load every time it is called?

    When I use Call Library Function Node in real time, is the DLL loaded once for all or load every time when it is called?
    I have a time critical real time application, in which I use a piece of DLL function developed by C++.  It is OK?  Could any senior developer assure me?
    Thank you in advance.
    Solved!
    Go to Solution.

    qing_shan61 wrote:
    When I use Call Library Function Node in real time, is the DLL loaded once for all or load every time when it is called?
    Once
    qing_shan61 wrote:
    I have a time critical real time application, in which I use a piece of DLL function developed by C++.  It is OK?
    OK
    Be sure that all DLL calls are thread safe (do not perform calls in UI thread).
    Also for real-time application you need real-time OS.
    Andrey.

  • Use call library function node

    I try to use call library function node to call a function in DLL and retrieve info stored in the C structure data type, can I do it? If yes, how ? Thanks.

    Have a look at the article Configuring the Call Library Function Node

  • Using the Library function node?

    I am using a Library Function Node to call a DLL function.  It works perfectly on one computer and Labview 8 but on another computer with Labview 7.1 it does not work.
    It crashes everytime it hits this node call.
    The problem is that, even after I define the node call to a specific function in a DLL, when the VI is running it defaults to an old DLL and function that is no longer in the syetem.  Why does it default to this old call and how can I break the default so it calls the proper function that is define in the node setup defintion.

    Hi irfocus,
    I am not sure why the the Call Library Function Node is defaulting to what you had created before, but one suggestion I have that may fix this problem is deleting the one that is already in place and creating a new one from scratch that references the DLL you actually want. This should keep the new configuration.
    Eli S.
    National Instruments
    Applications Engineer

  • How to use clusters for saving long length fields

    Hi all,
    I'm creating a customizing table as per the requirement. In that table there is one field of size char(1000) to store comments regarding the corresponding record. Instead of creating the field of size 1000, how can i use clusters to do this. I don't know about the clusters, so please reply the thread with proper explanation and example.
    thank u all..

    try command export to database
    look F1 !
    use table INDX
    A.

  • Using Clustered ASAs in Transparent mode to support VRF based Network ?

    Hi Guys,
    I'm investigating the ways that I can use 2 x ASA (5525x) to accommodate Multi-tenancy situation with overlapping addresses. Unfortunately in this particular scenario we have to stick with 5525x firewalls.
    The ASAs are going to be placed in north-south traffic path between 2 routers and these routers need to be configured with multiple VRFs to segregate the traffic for each tenant with overlapping IP subnets ( We are not looking at NAT as a workaround for the time being).
    As we know, this ASA model won't support VRFs so we can't use the ASA as a intermediary routing hop and therefore this is not an option.. and using security contexts per VRF seems not scale-able enough (correct me if I'm wrong). So my thinking is that, if we put the ASAs in to the transparent mode and just use the ASAs as a layer 2 interconnect (configured with different VLANs connecting VRFs served by top and bottom routers)  I should be able to go up to maximum of 50 VRFs (since 5525x only supports 200 VLANs).  
    I'm also planning to use the 2 ASAs in a cluster mode to aggregate the bandwidth of both ASAs for better throughput.
    So I need to clarify following with you guys.. 
    1) Can I actually do this or am I missing something.
    2) Are there any limitations that I might run in to with this setup
    3) Is there anyone out there who's doing the same thing or can you think of a better way to tackle this scenario (with same hardware and requirements)
    4) Instead of using clustering, can I use simple Active/Stanby pare and still configure transparent mode and use it that way ?
    Appreciate your input.
    Thanks
    Shamal 

    Is any expert out there who can answer my query ?. Much appreciated.

Maybe you are looking for

  • I am trying to uninstall and reinstall iPhoto 9.5.1

    I have issues exporting a slideshow so found the instructions to uninstall/reinstall posted by Terence Devlin on May 12, 2014.  I used steps 1 and 2c (below) to try and uninstall the iPhoto.app but it remains installed: step 1- drag iPhoto.app from a

  • PC Suite 6.81.13.0 and the N91

    Hi, I'm running normal Windows XP SP2, on a stable system, admin rights, with anti-virus, the works... My PC Suite is the latest version (6.81.13.0), and the firmware is the original, that the phone was shipped with. I was trying to update my N91's F

  • Not using LC - Consoscope Member. OLAP Error

    Hi experts, First of all, I have deleted LC member in Consoscope dimensions, and also Script Logic (Instead of LC I use EUR). After processing Conso Application I get this error:   - CubeProcess : Errors in the OLAP storage engine: The attribute key

  • Unwanted time delay

        I am trying to control the motion of a stepper motor using LabView 8.0.  I have had success controlling it with the terminal that comes with the motor, however I would like to have an end-user friendly interface.  I have written a vi that works f

  • Embed wordpress with iframe that automatically adjusts height

    I have been on the search for an iframe code like the one shown in the embedding tumblr jam session but I need one that will adjust the height of the iframe according to the content of the page! its for embedding a wordpress blog into my muse blog se