How to...WebDisp Clustering??

Hello All,
I've a Portal running on the MSCS Environment with one dialog instance. Now i need to configure the WebDispatcher for the load balancing b/w CI and DI.
And then it will be a common URL to launch the Portal.
My concern is what if the Host, Where WebDispatcher is installed, goes down. Is there a way to cluster the WebDisp??
Any Ideas
Vaib

SK,
I know the job of WebDisp. I think u have to look at the Q again and understand it.
I'm not asking to forward the request to different WebDisp. I'm trying to cluster the WebDisp, means if one server goes down then the other one should take over...
Any ideas now.
Vaib

Similar Messages

  • How many OC clusters can in installed / implemented on a node & RAC DBS

    In a cluster,
    How many OC clusters can be installed and How many RAC Database can a single OC cluster can support.
    Can i share single VG & LV to manager two OC clusters each with one RAC Database.
    Thanks in Advance.
    Regards
    Satish

    What are referring to here as "OC clusters"? By any chance, are you referring to Oracle Clusterware? If yes, you can install only one Oracle Clusterware in a cluster, and I don't think there is a hard limit on number of databases it can support as far it is not constrained by the OS resources and the entries it can make in the OCR.
    Can i share single VG & LV to manager two OC clusters each with one RAC Database.Since you can not install more than one Clusterware on a cluster, this question doesn't arise.
    Hope this helps.
    Thanks
    Chandra

  • How to create clustering on oracle application server on windows

    hi,
    i want to know how can i create clustering on oracle application server on windows machine.
    regards

    I think that you need to configure Web cache for this as a frontend, and two or more servers behind it.
    Try to read :
    Metalink DOC ID 312834.1
    http://www.oracle.com/technetwork/developer-tools/forms/documentation/advancedformsconf-128186.pdf
    Edited by: Marcos_Pawloski on 15/12/2010 00:02

  • How To: CF11 Clustering without Multicast (AWS)

    This week I've been working on getting clustering setup for a client. Initially we were using CF10 with the latest patches. Ideally we wanted non-sticky load balancing with session replication. We want really high availability with the option to reboot a server at any time and not have to wait for session draining or lose customers if a node goes down. Adam Cameron points out that there is an issue with CF10 and not having an option to turn on session replication Adam Cameron's CFML Blog: Problem with session replication with CF10 clustering. Trying various fixes I could not get the session to replicate we moved to CF11 which restores that issue. There is a bug open for CF10 with some weird responses but I never saw any sort of fix for this.
    CF11 as noted solves this odd issue, so I thought we were in the clear. Following the limited cluster setup guides found online there is some manual configuration to do on the remote instance. First, I am not sure if the default cfusion instance just can't be used as a member of a cluster but I had a hard time ever getting it to work. So both the local and remote instance use new CF11 instances created from within the Instance Manager. The instructions Adobe ColdFusion 10 * Enabling clustering for load balancing and failover are mostly correct in that you have to copy the <cluster> node to the remote instance. One issue pointed out in a few places is that the cluster block has to actually go IN the <host> node and not after it. CF10, CF11 and maybe even CF9 put the block (and the documents suggest putting the block) after the </host> tag which, in my experience, does not work.
    After everything was configured and I started up my test I could not get the remote node to respond at all. Looking in the cf error log I constantly saw this line:
    INFO: Manager [/]: skipping state transfer. No members active in cluster group.
    Digging in to the tomcat clustering discussions this basically means the cluster couldn't find the remote instance. By default CF uses the multicast cluster support in tomcat and doesn't have an option to do anything different. Researching this found that AWS does not support broadcast nor multicast in EC2. Further research showed how tomcat could be configured for static cluster member configuration and so I modified the server.xml files to match and viola, cluster with session replication. Using the ELB on AWS we have sticky sessions disabled (basically round-robin style requests) and the requests bounce evenly between the instance members. The session id's, however, stay the same on each page load even though the request is going to a different host.
    So here is what the cluster node of the server.xml looks like:
    <Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster" channelSendOptions="8" channelStartOptions="3">
            <Manager notifyListenersOnReplication="true" expireSessionsOnShutdown="false" className="org.apache.catalina.ha.session.DeltaManager"/>
            <Channel className="org.apache.catalina.tribes.group.GroupChannel">
              <!--<Membership port="45564" dropTime="3000" address="228.0.0.4" className="org.apache.catalina.tribes.membership.McastService" frequency="500"/>-->
              <Receiver port="4001" autoBind="100" address="auto" selectorTimeout="5000" maxThreads="6" className="org.apache.catalina.tribes.transport.nio.NioReceiver"/>
              <Sender className="org.apache.catalina.tribes.transport.ReplicationTransmitter">
                <Transport className="org.apache.catalina.tribes.transport.nio.PooledParallelSender"/>
              </Sender>
              <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpPingInterceptor"/> <!-- ADDED -->
              <Interceptor className="org.apache.catalina.tribes.group.interceptors.TcpFailureDetector"/>
              <Interceptor className="org.apache.catalina.tribes.group.interceptors.MessageDispatch15Interceptor"/>
          <Interceptor className="org.apache.catalina.tribes.group.interceptors.StaticMembershipInterceptor">
                    <Member className="org.apache.catalina.tribes.membership.StaticMember"
                      port="4002"
                      host="172.31.33.220"
                      domain="delta-static"
                      uniqueId="{0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15}"
                    />
              </Interceptor>
            </Channel>
            <Valve className="org.apache.catalina.ha.tcp.ReplicationValve" filter=""/>
            <Valve className="org.apache.catalina.ha.session.JvmRouteBinderValve"/>
            <ClusterListener className="org.apache.catalina.ha.session.JvmRouteSessionIDBinderListener"/>
            <ClusterListener className="org.apache.catalina.ha.session.ClusterSessionListener"/>
          </Cluster>
    You can see the <membership> node is commented out (this is the multicast function). The TcpPingInterceptor is added and the StaticMembershipInterceptor is added. The reciever port on this instance is 4001 and the remote instance is 4002 so the interceptor uses 4002 on this instance to contact the remote host and vice-versa. In other words the remote instance will use the same <cluster> node with the ports switch and the host IP address changed on the static interceptor. The uniqueID then rotates on each member going from {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15} to {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,0}
    Of course each additional member to the cluster will mean manual changes to each existing member (to add additional static interceptors) but that seems a small price to pay to not have to move our entire environment off AWS.

    Hope I am not hijacking your excellent post.
    Some details to add for findings on AWS EC2 environment.
    From CMD prompt CF11 instance that is clusted starting:
    Aug 26, 2014 11:23:44 PM org.apache.catalina.ha.session.DeltaManager startIntern
    al
    INFO: Register manager / to cluster element Host with name localhost
    Aug 26, 2014 11:23:44 PM org.apache.catalina.ha.session.DeltaManager startIntern
    al
    INFO: Starting clustering manager at /
    Aug 26, 2014 11:23:44 PM org.apache.catalina.ha.session.DeltaManager getAllClust
    erSessions
    INFO: Manager [/], requesting session state from org.apache.catalina.tribes.memb
    ership.StaticMember[tcp://172.31.21.168:4001,172.31.21.168,4001, alive=0, secure
    Port=-1, UDP Port=-1, id={1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 0 }, payload={}, c
    ommand={}, domain={100 101 108 116 97 45 115 116 97 ...(12)}, ]. This operation
    will timeout if no session state has been received within 60 seconds.
    Aug 26, 2014 11:23:45 PM org.apache.catalina.ha.session.DeltaManager waitForSend
    AllSessions
    INFO: Manager [/]; session state send at 8/26/14 11:23 PM received in 125 ms.
    Aug 26, 2014 11:23:45 PM org.apache.catalina.ha.session.JvmRouteBinderValve star
    tInternal
    INFO: JvmRouteBinderValve started
    From CMD prompt CF11 instance details when other cluster has been restarted:
    Aug 26, 2014 11:22:47 PM org.apache.catalina.ha.tcp.SimpleTcpCluster memberDisap
    peared
    INFO: Received member disappeared:org.apache.catalina.tribes.membership.StaticMe
    mber[tcp://172.31.25.175:4002,172.31.25.175,4002, alive=0, securePort=-1, UDP Po
    rt=-1, id={0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 }, payload={}, command={}, doma
    in={100 101 108 116 97 45 115 116 97 ...(12)}, ]
    Aug 26, 2014 11:23:06 PM org.apache.catalina.ha.tcp.SimpleTcpCluster memberAdded
    INFO: Replication member added:org.apache.catalina.tribes.membership.StaticMembe
    r[tcp://172.31.25.175:4002,172.31.25.175,4002, alive=0, securePort=-1, UDP Port=
    -1, id={0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 }, payload={}, command={}, domain=
    {100 101 108 116 97 45 115 116 97 ...(12)}, ]
    Aug 26, 2014 11:23:06 PM org.apache.catalina.tribes.group.interceptors.TcpFailur
    eDetector performBasicCheck
    INFO: Suspect member, confirmed alive.[org.apache.catalina.tribes.membership.Sta
    ticMember[tcp://172.31.25.175:4002,172.31.25.175,4002, alive=0, securePort=-1, U
    DP Port=-1, id={0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 }, payload={}, command={},
    domain={100 101 108 116 97 45 115 116 97 ...(12)}, ]]
    Running CF11 via services.msc (as you normally would) these similar details are recorded in ColdFusion11\clustered_instance\logs\coldfusion-error.log. The latter part of log showing when other clustered instance has been stopped and started.
    Aug 26, 2014 11:40:31 PM org.apache.catalina.ha.session.DeltaManager startInternal
    INFO: Register manager / to cluster element Host with name localhost
    Aug 26, 2014 11:40:31 PM org.apache.catalina.ha.session.DeltaManager startInternal
    INFO: Starting clustering manager at /
    Aug 26, 2014 11:40:31 PM org.apache.catalina.ha.session.DeltaManager getAllClusterSessions
    INFO: Manager [/], requesting session state from org.apache.catalina.tribes.membership.StaticMember[tcp://172.31.21.168:4001,172.31.21.168 ,4001, alive=0, securePort=-1, UDP Port=-1, id={1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 0 }, payload={}, command={}, domain={100 101 108 116 97 45 115 116 97 ...(12)}, ]. This operation will timeout if no session state has been received within 60 seconds.
    Aug 26, 2014 11:40:31 PM org.apache.catalina.ha.session.DeltaManager waitForSendAllSessions
    INFO: Manager [/]; session state send at 8/26/14 11:40 PM received in 141 ms.
    Aug 26, 2014 11:40:31 PM org.apache.catalina.ha.session.JvmRouteBinderValve startInternal
    INFO: JvmRouteBinderValve started
    Aug 26, 2014 11:40:31 PM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["http-bio-8501"]
    Aug 26, 2014 11:40:31 PM org.apache.coyote.AbstractProtocol start
    INFO: Starting ProtocolHandler ["ajp-bio-8012"]
    Aug 26, 2014 11:40:31 PM com.adobe.coldfusion.launcher.Launcher run
    INFO: Server startup in 44274 ms
    Aug 26, 2014 11:42:04 PM org.apache.catalina.ha.tcp.SimpleTcpCluster memberDisappeared
    INFO: Received member disappeared:org.apache.catalina.tribes.membership.StaticMember[tcp://172.31.21.168:4001,1 72.31.21.168,4001, alive=0, securePort=-1, UDP Port=-1, id={1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 0 }, payload={}, command={}, domain={100 101 108 116 97 45 115 116 97 ...(12)}, ]
    Aug 26, 2014 11:42:23 PM org.apache.catalina.ha.tcp.SimpleTcpCluster memberAdded
    INFO: Replication member added:org.apache.catalina.tribes.membership.StaticMember[tcp://172.31.21.168:4001,172.31. 21.168,4001, alive=0, securePort=-1, UDP Port=-1, id={1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 0 }, payload={}, command={}, domain={100 101 108 116 97 45 115 116 97 ...(12)}, ]
    Aug 26, 2014 11:42:23 PM org.apache.catalina.tribes.group.interceptors.TcpFailureDetector performBasicCheck
    INFO: Suspect member, confirmed alive.[org.apache.catalina.tribes.membership.StaticMember[tcp://172.31.21.168:4001,172.31 .21.168,4001, alive=0, securePort=-1, UDP Port=-1, id={1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 0 }, payload={}, command={}, domain={100 101 108 116 97 45 115 116 97 ...(12)}, ]]
    Hope that adds to the usefulness of this thread.
    Regards, Carl.

  • How to setup Clustering  with Weblogic?

    Dear All,
    I am a beginner of using Weblogic. Now i need to setup Clustering in
    company. I have 3 NT Server and install Weblogic 5.1.0 on each machine, the
    name is Cluster1, Cluster2 and Cluster3. At the First Step, can someone tell
    me how to setup the clustering and how to test it to esure that is work???
    Thanks so much!
    hk-beginner

    more specifically,
    http://www.weblogic.com/docs51/cluster/index.html
    Ketan
    "Billy Bunter" <[email protected]> wrote in message
    news:[email protected]..
    Look at the BEA docs.
    beginner wrote:
    Dear All,
    I am a beginner of using Weblogic. Now i need to setup Clustering
    in
    company. I have 3 NT Server and install Weblogic 5.1.0 on each machine,the
    name is Cluster1, Cluster2 and Cluster3. At the First Step, can someonetell
    me how to setup the clustering and how to test it to esure that iswork???
    Thanks so much!
    hk-beginner

  • How to implement clustering

    Dear all,
    I' m trying to implement clustering in my information retrieval project. I have got 100 text files, each represented by a term vector. So there are 3 arrays: file[m], term[n], and weight[m][n]. What I need to do is to cluster the files that have close similarity measured by Cosine Vector Similarity.
    I plan to use 'for loop' to compute the vector similarity between each two files and find the closest pair. I have done this actually. But after this, I don't know how to deduct these two files from the original array file[m] and weight[m][n], represent them by an average vector and then compare this vector with all the remaining files, and so on.
    Could anybody give me some idea? Thanks in advance.

    I don't think this is really a programming question - more of an algorithm question.
    There are a number of different ways of 'clustering' together a number of points in n-dimensional vector space, so that the set of points maybe represented as a single co-ordinate in n-dimensional vector space.
    Google for 'nearest neighbour clustering' there are many pages with the algorithm you require, you could also search on 'centroid cluster'.
    http://www.statsoft.com/textbook/stcluan.html is a good resource.
    I haven't implemented any clustering code myself, but knowing the algorithm, it should be straightforward in Java.
    Andy.

  • How to create clustered index?

    When working with Relational model I do not see how to make index clustered? All indexes (as well as primary keys) are created non clustered so far...

    In an Oracle Physical Model, you can create a Cluster and create an Index on that ClusterI am designing for SQL Server, not for Oracle. So Oracle specific approaches would not help me.
    Even for the Oracle (which I do not know much but I can guess) I think that this is not what I was asking for. I simply need to create a clustered index, not to include column into some cluster. In other words I need that generated DDL looks like
    create clustered index...
    Now it always looks like
    create nonclustered index...

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

  • How to create clustered index in Oracle ?

    I need to Create unique clustered index idx_col1 on table1(col1) in Oracle 9i.
    Should I declare it at creation of table as index-organized ? My table is created with the code like Create table table1 as select ..... from ....
    Can anybody post an example ?
    Thanks

    Oracle does not have the concept of a clustered index from SQL Server. You may get something similar if you create your table as an index organized table, i.e.
    CREATE TABLE my_iot (
      col1 number primary key,
      col2 number
    organization index;or you may get similar benefits by creating a cluster. It really depends on what functionality you're trying to replicate and what problem your trying to solve. Either way, though, you'll have to have separate steps to create the table and then to insert the data.
    Justin

  • LV 7.3 and up: How to edit clusters being passed to sub VIs?

    Hello,
    Here is what I've been doing:
    In an effort to keep VIs neat and clean I've been passing clusters to subVIs.  In order to update the cluster from the subVI I've followed this procedure:
    1. Create a reference to the cluster
    2. Drag the reference from the block diagram of the calling VI to the front panel of the subVI
    3. Create property nodes pointing to the refnum and write to those, updatig the data in the calling VI's cluster.
    I do all this to obtain performance similar to "passing by reference" in traditional programming.  It works great up until one point:
    When I edit the cluster, I need to repeat step #2, since the old refnum no longer matches.  I'd like to find a way around step #2 to begin with since it is rather ackward to begin with- I usually end up having to resize several windows in order to successfuly create the refnum to begin with.
    Any suggestions?
    Also, if someone can clear this up for me... The refnum which is created has a red start on the icon- is this because it is a strict typedef?  What does removing that do exactly?
    Thanks,
    Dave

    Hi Dave,
    if you change the type of your cluster then the reference to it will also change, so you have to do step 2. You can use type defs. to  change only one place.
    The red star shows you, that the type of the data is included into the refernce. You can use more functions then. You can see it if you connect a property node to such a refnum. You shall have more properties if the star is available.
    Hope it helps.
    Mike

  • How to restart clustered message store

    Hello all,
    I'm sure this is a newbie question, but what is the recommended procedure for making configuration changes to a clustered deployment of message store?
    I've inherited admin duties for two servers running iMS 6.2. Each server is assigned a portion of the user population with fail-over to the other server. I have some experience with iMS but not with cluster.
    If I wanted to make a configuration change (e.g. change the http port), I would normally use the configutil command, then stop and restart iMS to activate the changes.
    But what is the proper way to do this when you have multiple servers in a cluster?
    Thank you,
    BJ

    Messaging 6 is FAR better to work with in Cluster than 5.x was. In cluster, to do what you need:
    run configutil to make the change.
    stop-msg http
    start-msg http
    done.
    yes, even in cluster, this is all you have to do. the start/stop script actually works with the Watcher process, and it's watcher that tells cluste when failover is needed. Since Watcher is doing the stop/start stuff, it knows it means to do that, and doesn't bother the Cluster with it.

  • How to patch clustered SOA domain keeping the domain running?

    Hi All,
    We want to patch SOA 11.1.1.3.0 to SOA 11.1.1.6.0. The SOA 11.1.1.3.0 environment is a clustered environment( 2-node cluster). Also database schemas are present in RAC database.
    I know the patching process but my concern is I have to patch production environment and we have to minimize the downtime. Can we patch a WebLogic + SOA domain keeping the environment running ?
    Please suggest.
    Regards,
    Roshni Shankar

    Hi Roshni,
    Check this:
    http://docs.oracle.com/cd/E16764_01/core.1111/e10106/busreq.htm
    It says, During the rolling patching of a cluster, each server in the cluster is individually patched and restarted while the other servers in the cluster continue to host your application
    Always keep a backup before applying a patchset to your environment.
    Thanks,
    Sharmela

  • How to make Clusters in Websphere .!!!!!!!!!!!!

    I need to implement Cluster , which is to avoid congustion in accesing my Application server . How can i implement the Logic in Webphere , Anything is to be changed in my Coding part .
    Thanks in Advance !!!

    Hi,
    what you need is a ejb-jar.xml as it in Jboss. You don't need to put jboss.xml.
    If you have WSAD installed and develop your app in it. It will be quite easy.

  • Need Advice: How to do clustering with PointBase DBMS

    Hi,
    I am doing an application that requires me to update several pointbase databases with same schema(running on separate machines) and perform transactions using them.
    I would be greatly appreciated if someone can tell me what are the available code hacks and techniques to do simultaneous updates across all dbms and yet the dbms can synchronise with one another if some fails over time.
    Thanks in advance.
    Regards,
    Hades

    PointBase is an embedded database.
    The point of an embedded database is that one is needed per client.
    If you have multiple clients that need the same source then you might want to consider if you are using the correct solution.
    But at any rate you could always use JMS with guaranteed message delivery.

  • How to Export data using DATA Cluster?

    Hi,
    I am trying to export around 10000 records using Memory ID concept  in the same session to another spot. 
    IF sy-subrc = 0.
    Exporting the number of total records
      EXPORT g_tot_line FROM g_tot_line TO MEMORY ID c_tline.
    ENDIF.
    My issue : - It throws dump saying
    ''When the SAP paging overflow occurred, the ABAP/4 memory contained
    entries for 8 of different IDs.''
    insufficent space and i need to use the clustres.
    I am not sure how to use Clusters in this scenario....
    Any suggestions will be appreciated..
    Regards,
    Charan

    What is so complicated about Data Clusters ?
    Did you do an F1 or read the online documentation: [http://help.sap.com/abapdocu_70/en/ABAPEXPORT_DATA_CLUSTER_MEDIUM.htm], [http://help.sap.com/abapdocu_70/en/ABAPIMPORT_MEDIUM.htm]
    If you've any specific question, shoot !!!
    BR,
    Suhas

Maybe you are looking for

  • Simple report for lock users not actives in last 30 days ?

    Hi, we need code in SE38 simple report for lock all users not actives in last 30 days. This sample is good but need check : user its inactive in last 30 days. http://www.sap-basis-abap.com/abap019.htm Thank you.

  • What is the best way to archive old footage (DVD, VHS, Super 8 etc.)

    Hello, I am starting a huge archiving projet of possibley 100-200 hours of footage from all kinds of sources (VHS tapes, Mini DV, Super 8 film). What is the best way to archive this footage at the highest possible resolution? What sort of file should

  • Facetime won't log in

    Facetime was working fine, but now when we go to gin in, it let's us get to the screen that says, People will call you using this email address, etc.  We click next but it goes back to the Enter Apple ID page. The passwords are fine and the apple id

  • Safari opens new tabs extremely slow

    My post is very similar to this one. Since I got Safari 4, opening new tabs has been painful when having Safari open (in the background) for a longer period of time.. When starting Safari and doing stuff with tabs, no problem! However, after a couple

  • Import Drag & Drop package in VJ++

    I use Visual J++ for developing. I'm trying to use Drag & Drop i.e. the java.awt.dnd.* package. I downloaded the JDK1.3 version and added it to my CLASSPATH. CLASSPATH=d:\java\jdk1.3\src.jar; When I try to import the dnd package only the dragsource e