+

Search Tips   |   Advanced Search

Enable static routing for a cluster

If our high availability infrastructure is disabled and you require IIOP routing capabilities, we can create a static routing table for the members of a cluster to use to handle enterprise bean requests. Because the information contained in this static routing table does not account for server runtime state, we should delete this table and return to using the dynamic routing table as soon as your high availability infrastructure is enabled.

Before creating a static route table, ensure that:

We should only create a static route table if your high availability infrastructure is disabled and you require IIOP routing capabilities. To create a static route table:


Tasks

  1. Start the wsadmin tool if it is not already running.
  2. Identify the cluster managed bean (MBean) for the cluster for which we are creating the route table, and assign that MBean to a variable.

    • Use Jacl:
      set cluster [$AdminControl completeObjectName cell=
         cell,type=Cluster,name=cluster_name,*] 
      puts $cluster
      

    • Use Jython:
      cluster = AdminControl.completeObjectName('cell=
        cell,type=Cluster,name=cluster_name,*')
      print cluster
      

    These commands return the name of the cluster MBean for the specified cluster. For example, for cluster cluster1, the output from these commands will be similar to the following message:

    WebSphere:cell=mycell,name=cluster1,mbeanIdentifier=Cluster,type=
       Cluster,process=cluster1
    
  3. Export the route table.

    • Use Jacl:
      $AdminControl invoke $cluster exportRouteTable
      

    • Use Jython:
      AdminControl.invoke(cluster, ‘exportRouteTable')
      

    After the table is created, the name of the route table file, is displayed in a message similar to the following message:

    /home/myInstall/was/server/profiles/dmgrProfile/config/cells/mycell/
       clusters/cluster1/cluster1.wsrttbl
    

    As this message illustrates, the file containing the table is placed in the config directory of the deployment manager for that cluster. We should keep a record of this location so that we can delete this file when we are ready to start using dynamic routing again.

  4. Synchronize the configuration changes across nodes.

    1. Clear the configuration repository Epoch. If we do not clear the configuration repository Epoch, the synchronization only updates the files that the configure service component edited, which does not include the file containing the static routing table.

      Use Jacl:

      set configRepository [$AdminControl completeObjectName 
           node=node,type=ConfigRepository,*] 	
      $AdminControl invoke $configRepository refreshRepositoryEpoch 
      

      Using Jython:

      configRepository = AdminControl.completeObjectName('node=node,
          type=ConfigRepository,*') 	
      AdminControl.invoke(configRepository, 'refreshRepositoryEpoch')
      

    2. Repeat this process for each node to synchronize.

  5. Stop the cluster. Follow the instructions specified either the Stopping clusters or Stopping clusters using scripting topic.
  6. Exit the wsadmin tool.

  7. Use the following Debug flag appended to the startServer command to manually start each member of this cluster.
    -Dcom.ibm.websphere.management.registerServerIORWithLSD=false
    

    For example, to start server1 on a Windows operating system with static routing enabled, issue the following command from the server profile's bin directory:

    startServer.bat server1 -Dcom.ibm.websphere.management.registerServerIORWithLSD=false
    

The cluster members use the static route table to perform IIOP routes.


What to do next

When wer high availability infrastructure is enabled, follow the instructions in the topic Disable static routing for a cluster to disable static routing. When static routing is disabled, the cluster members resume using dynamic routing.

  • Disable static routing for a cluster
  • Save wsadmin configuration changes
  • Synchronize nodes
  • Start the wsadmin scripting client
  • Stopping clusters
  • Stopping clusters using scripting
  • Starting clusters
  • Starting clusters using scripting
  • Java virtual machine custom properties