This tutorial shows you how to configure and test the HTTP session replication features of an Oracle WebLogic Server 12c cluster. You test both in-memory and JDBC (database) replication. An active JDBC data source is necessary to use JDBC replication.
Approximately 45 minutes
When in-memory replication is enabled for a web application, WebLogic Server copies session state from one server in the cluster (primary) to one other server in the same cluster (secondary). The replica on the secondary server is kept up-to-date so that it may be used if the primary server fails.
When a client attaches to a server in the cluster and creates the primary session state, the server hosting the primary state ranks the other servers in the cluster to determine which server should host the secondary state. Server ranks are assigned using a combination of:
If the primary server fails, another server will take on its clients to become the new primary server. That server contacts the secondary server and receives the session data, and a new secondary server is chosen.
With persistent JDBC replication, a database is configured for the storage of session objects. After it is configured, each of the server instances in a cluster uses a JDBC data source to share access to the database. This technique does not need primary and secondary servers, since the data is stored in a database that is accessible to all servers. There is, however, a significant performance reduction with JDBC replication compared to in-memory replication.
Cluster replication settings are configured individually for each application that is deployed to the cluster. Modify these settings by either updating the application's XML deployment descriptor file directly, or by creating a deployment plan.
The following is a list of software requirements:
Before starting this tutorial, you should have completed the Oracle by Example tutorials titled:
To configure custom cluster replication group settings, perform the following steps:
1. |
If the administration server of the domain is not already running, it needs to be started. To start it, in a Terminal window, navigate to the domain directory, and enter the command: ./startWebLogic.sh When prompted for a username and password, enter the credentials of the domain administrator.
|
||||||
---|---|---|---|---|---|---|---|
2. |
If any of the servers in your WebLogic cluster (dizzy1, dizzy2, or dizzy3) are running, stop them. Replication group changes do not take effect on a running server.
|
||||||
3. |
Open a web browser and enter the URL of the domain's administration console. In this tutorial, that is: http://host01.example.com:8001/console Note: Use the host name and port of the administration server of your domain. On the Welcome screen, log in using the username and password entered to start the servers.
|
||||||
4. |
In the Change Center, click the Lock & Edit button.
|
||||||
5. |
Under Domain Structure, expand Environment and click Servers.
|
||||||
6. |
Click the dizzy1 server.
|
||||||
7. |
Click the Configuration tab, and then the Cluster subtab.
|
||||||
8. |
Enter the following values:
Then click Save.
|
||||||
9. |
Repeat the previous steps, but select the dizzy2 server. Configure the same Replication Group and Preferred Secondary Group values.
|
||||||
10. |
Select the dizzy3 server. Repeat the previous steps again, but this time configure the opposite Replication Group and Preferred Secondary Group values:
|
||||||
11. |
In the Change Center, click the Activate Changes button.
|
||||||
12. |
Restart all of the servers in your WebLogic cluster (dizzy1, dizzy2, and dizzy3). If you have previously configured and started the Node Manager, as described in the Oracle WebLogic Server 12c: Configuring and Using Node Manager tutorial, you can start these managed servers by using the administration console. Otherwise, start each server from the command line. For example: ./startManagedWebLogic.sh dizzy1 host01.example.com:8001
|
To configure a web application for in-memory replication and deploy it to a cluster, perform the following steps:
1. |
Download the shoppingcart.war web application. Place it in a location that is accessible to your WebLogic domain. For this tutorial, the file is saved to /u01/app/oracle/Middleware/user_projects/applications.
|
---|---|
2. |
Use an archive utility such as jar or unzip to extract the application archive to a folder named shoppingcart. mkdir shoppingcart unzip -d shoppingcart shoppingcart.war
|
3. |
Edit the shoppingcart/WEB-INF/weblogic.xml file. Locate the comment line Insert session descriptor element here.
|
4. |
Directly below this line, add the following new lines: <session-descriptor> <persistent-store-type>replicated_if_clustered</persistent-store-type> </session-descriptor> Save your changes.
|
5. |
Use an archive utility such as jar or zip to re-create the application archive shoppingcart.war. rm shoppingcart.war cd shoppingcart zip -r ../shoppingcart.war *
|
6. |
Return to the WebLogic Server administration console.
|
7. |
In the Change Center, click the Lock & Edit button.
|
8. |
Under Domain Structure, click Deployments.
|
9. |
On the right, under Deployments, click the Install button.
|
10. |
Find the Current Location field. Use the links to browse to the location in which you placed the downloaded shoppingcart.war file. There you will see shoppingcart.war with a radio button next to it. Select that radio button. The console then fills in the Path field for you. Alternatively, you can type in the path and file name in the Path field yourself. Click Next.
|
11. |
On the next screen, ensure that the option Install this deployment as an application is selected. Then click Next.
|
12. |
On the next screen, select the cluster dizzycluster. Then click Next.
|
13. |
On the next screen, keep all the default values and click Finish.
|
14. |
In the Change Center, click the Activate Changes button.
|
15. |
In the Deployments table, select the check box to the left of the shoppingcart application. Then use the Start drop-down list to select the option Servicing all requests.
When prompted, click Yes to continue.
|
To validate your session replication settings, perform the following steps:
1. |
Open a Terminal window and change directories to: <WEBTIER_HOME>/instances/instance1/bin In this tutorial, <WEBTIER_HOME> is /u01/app/oracle/Middleware/Oracle_WT1.
|
---|---|
2. |
Execute the following command: ./opmnctl status
|
3. |
From the output of the command, verify that the HTTP Server process ohs1 is running ("Alive").
If it is not running, start it by using the following command: ./opmnctl startall
|
4. |
Direct a browser to the shoppingcart application, but via the HTTP Server proxy. The default port is 7777: http://<host>:7777/shoppingcart For example: http://host01.example.com:7777/shoppingcart
|
5. |
Click the Go Shopping link. Then use the Add to shopping cart links to add an item to your cart.
|
6. |
Click the Back to Home Page link. Then repeat the previous step to add a second item to your cart. When finished, click the View Shopping Cart link.
|
7. |
Locate the Terminal windows from which you started the servers in your WebLogic cluster. Use the output messages of the application to determine to which server the user's session is pinned (the primary server). For example: added new element: package of 5 legal pads Your shopping cart includes: Item: box of 12 pens (black) price: 4.99 Item: package of 5 legal pads price: 15.99" If you started these servers with Node Manager instead of from the command line, you will need to view the output log files (<server_name>.out).
|
8. |
Kill the primary server that is hosting your session. Use Ctrl + C or the Linux kill command.
|
9. |
Return to your web browser, click Back to Home Page, and then click View Shopping Cart again. Confirm that the shopping cart contents are still the same.
|
10. |
Once again use the server output messages to determine which server is now processing the requests.
|
11. |
Restart the server that was killed. Close your web browser.
|
To create the necessary tables in your database for JDBC replication, perform the following steps:
1. |
Download the jdbc_replication_oracle.sql SQL script to the machine running your Oracle database.
|
---|---|
2. |
Invoke SQL Plus as the sysdba role: $ $ORACLE_HOME/bin/sqlplus / as sysdba
|
3. |
Run the SQL script by using the following command: SQL> @jdbc_replication_oracle.sql SQL> commit;
If the SQL file is not located in the current directory, provide the full path in the command. For example:
|
4. |
Verify the presense of a new table named WL_SERVLET_SESSIONS: SQL> select count(*) from WL_SERVLET_SESSIONS;
|
5. |
Leave the SQL Plus session open.
|
To retarget the existing data source (from a previous tutorial) to the entire cluster, perform the following steps:
1. |
Return to the administration console and click Lock & Edit in the Change Center. Then, in the Domain Structure panel, expand Services and click Data Sources.
|
---|---|
2. |
Select the existing dizzyworldDS data source.
|
3. |
Click the Targets tab.
|
4. |
In the Clusters section, select the option All servers in the cluster. Then click Save.
|
5. |
In the Change Center, click the Activate Changes button.
|
To configure the application to use JDBC session replication, perform the following steps:
1. |
Edit the shoppingcart/WEB-INF/weblogic.xml file again.
|
---|---|
2. |
Modify the existing <session-descriptor> element as follows: <session-descriptor> <persistent-store-type>jdbc</persistent-store-type> <persistent-store-pool>dizzyworldDS</persistent-store-pool> <persistent-store-table>WL_SERVLET_SESSIONS</persistent-store-table> </session-descriptor> Save your changes.
|
3. |
Re-create shoppingcart.war again. rm shoppingcart.war cd shoppingcart zip -r ../shoppingcart.war *
|
4. |
Return to the administration console and click Lock & Edit in the Change Center.
|
5. |
In the Domain Structure panel, click Deployments.
|
6. |
Select the check box for the shoppingcart application. Then click Update.
|
7. |
Click Finish. In the Change Center, click Activate Changes.
|
To validate your session replication settings, perform the following steps:
1. |
Direct a browser to the shoppingcart application again. Add several items to your shopping cart.
|
---|---|
2. |
Return to SQL Plus and inspect the latest contents of the WL_SERVLET_SESSIONS table. SQL> select * from WL_SERVLET_SESSIONS; A row should exist and the value of the WL_CONTEXT_PATH column should be shoppingcart.war.
|
3. |
Use server output to determine which server is currently hosting the session. Kill this server.
|
4. |
Use the application to view your shopping cart again, and confirm that its contents are still the same.
|
In this tutorial, you learned how to:
![]() |
Copyright © 2012, Oracle and/or its affiliates. All rights reserved |