PageRenderTime 54ms CodeModel.GetById 25ms RepoModel.GetById 1ms app.codeStats 0ms

/hornetq-clustering/README.md

https://gitlab.com/ThomasHunt3r/jboss-eap-quickstarts
Markdown | 283 lines | 169 code | 114 blank | 0 comment | 0 complexity | df0fddd9c4875f14a0f382a5d8caa60d MD5 | raw file
  1. hornetq-clustering: HornetQ Demonstrating using Clustering
  2. ============================================================
  3. Author: Jess Sightler
  4. Level: Intermediate
  5. Technologies: JMS, MDB, HornetQ
  6. Summary: Demonstrates the use of HornetQ Clustering
  7. Prerequisites: helloworld-mdb
  8. Target Product: EAP
  9. Product Versions: EAP 6.1, EAP 6.2, EAP 6.3, EAP 6.4
  10. Source: <https://github.com/jboss-developer/jboss-eap-quickstarts/>
  11. What is it?
  12. -----------
  13. This example demonstrates the use of clustering with HornetQ. It uses the `helloworld-mdb` quickstart for its tests, so there is no code associated with this quickstart. Instructions are provided to run the quickstart on either a standalone server or in a managed domain.
  14. System requirements
  15. -------------------
  16. The application this project produces is designed to be run on Red Hat JBoss Enterprise Application Platform 6.1 or later.
  17. All you need to build this project is Java 6.0 (Java SDK 1.6) or later, Maven 3.0 or later.
  18. Configure Maven
  19. ---------------
  20. If you have not yet done so, you must [Configure Maven](https://github.com/jboss-developer/jboss-developer-shared-resources/blob/master/guides/CONFIGURE_MAVEN.md#configure-maven-to-build-and-deploy-the-quickstarts) before testing the quickstarts.
  21. Prerequisites
  22. ---------------
  23. **IMPORTANT:** This quickstart depends on the deployment of the `helloworld-mdb` quickstart WAR for its tests. Before you continue, you must build the `helloworld-mdb` quickstart WAR.
  24. Open a command prompt and navigate to the root directory of the helloworld-mdb quickstart.
  25. Type this command to build the WAR archive:
  26. mvn clean install
  27. See the helloworld-mdb [README](../helloworld-mdb/README.md) for further information about this quickstart.
  28. Configure the Server and Deploy the Quickstart
  29. ---------------
  30. You can choose to deploy and run this quickstart in a managed domain or on a standalone server. The sections below describe how to configure and start the server for both modes.
  31. _NOTE - Before you begin:_
  32. 1. If it is running, stop the JBoss EAP server.
  33. 2. If you plan to test using a standalone server, backup the file:
  34. EAP_HOME/standalone/configuration/standalone-full-ha.xml
  35. 3. If you plan to test using a managed domain, backup the following files:
  36. EAP_HOME/domain/configuration/domain.xml
  37. EAP_HOME/domain/configuration/host.xml
  38. After you have completed testing this quickstart, you can replace these files to restore the server to its original configuration.
  39. ### Configure the Server and Deploy the Quickstart to a Managed Domain
  40. You configure the server by running the install-domain.cli script provided in the root directory of this quickstart.
  41. #### Start the server in domain mode.
  42. 1. Open a command prompt and navigate to the root of the JBoss EAP directory.
  43. 2. The following shows the command line to start the server in domain mode:
  44. For Linux: EAP_HOME/bin/domain.sh
  45. For Windows: EAP_HOME\bin\domain.bat
  46. #### Configure the Domain Server and Deploy the Quickstart Using the JBoss CLI
  47. 1. Review the `install-domain.cli` file in the root of this quickstart directory. This script creates the server group and servers and configures HornetQ Clustering for testing this quickstart. You will note it does the following:
  48. * Stops the servers
  49. * Creates a server-group to test HornetQ Clustering
  50. * Adds 2 servers to the server-group
  51. * Configures HornetQ clustering in the full-ha profile
  52. * Deploys the `helloworld-mdb.war` archive
  53. * Restarts the servers.
  54. _NOTE: If your `helloworld-mdb` quickstart is not located at the same level in the file structure as this quickstart, you
  55. must modify its path in this script. Find the 'NOTE:' in the file for instructions._
  56. 2. Open a command prompt, navigate to the root directory of this quickstart, and run the following command to run the script:
  57. For Linux: EAP_HOME/bin/jboss-cli.sh --connect --file=install-domain.cli
  58. For Windows: EAP_HOME\bin\jboss-cli.bat --connect --file=install-domain.cli
  59. You should see "outcome" => "success" for all of the commands.
  60. 3. Restart the server in domain mode as described above.
  61. ### Configure the Server and Deploy the Quickstart to a Standalone Server
  62. If you choose to use standalone servers rather than domain mode, you will need two instances of the application server. Application
  63. server 2 must be started with a port offset parameter provided to the startup script as `-Djboss.socket.binding.port-offset=100`.
  64. Since both application servers must be configured in the same way, you must configure the first server and then clone it.
  65. #### Start the Server in Standalone Mode using the Full HA Profile.
  66. 1. Open a command prompt and navigate to the root of the JBoss EAP directory.
  67. 2. The following shows the command line to start the server with the full-ha profile. This profile supports clustering/HA
  68. For Linux: EAP_HOME_1/bin/standalone.sh -c standalone-full-ha.xml
  69. For Windows: EAP_HOME_1\bin\standalone.bat -c standalone-full-ha.xml
  70. #### Configure the Standalone Server and Deploy the Quickstart Using the JBoss CLI
  71. 1. Review the `install-standalone.cli` file in the root of this quickstart directory. This script configures clustering for a standalone server. You will note it does the following:
  72. * Enables console logging. By default, the full HA profile does not log to the console, so this script enables it.
  73. * Enables clustering and sets a cluster password
  74. * Enables clustering in the RemoteConnectionFactory
  75. * Deploys the `helloworld-mdb.war` archive
  76. * Reloads the server configuration
  77. _NOTE: If your `helloworld-mdb` quickstart is not located at the same level in the file structure as this quickstart, you
  78. must modify its path in this script. Find the 'NOTE:' in the file for instructions._
  79. 2. Open a command prompt, navigate to the root directory of this quickstart, and run the following command to run the script:
  80. For Linux: EAP_HOME_1/bin/jboss-cli.sh --connect --file=install-standalone.cli
  81. For Windows: EAP_HOME_1\bin\jboss-cli.bat --connect --file=install-standalone.cli
  82. You should see "outcome" => "success" for all of the commands.
  83. #### Clone the JBoss EAP Directory
  84. After you have successfully configured the server, you must make a copy of this JBoss EAP directory structure to use for the second server.
  85. 1. Stop the server.
  86. 2. Make a copy of this JBoss EAP directory structure to use for the second server.
  87. 3. Remove the following directories from the cloned instance:
  88. EAP_HOME_2/standalone/data/messagingbindings
  89. EAP_HOME_2/standalone/data/messagingjournal
  90. EAP_HOME_2/standalone/data/messaginglargemessages
  91. #### Start the JBoss EAP Standalone Servers with the Full HA Profile
  92. If you are using Linux:
  93. Server 1: EAP_HOME_1/bin/standalone.sh -c standalone-full-ha.xml
  94. Server 2: EAP_HOME_2/bin/standalone.sh -c standalone-full-ha.xml -Djboss.socket.binding.port-offset=100
  95. If you are using Windows:
  96. Server 1: EAP_HOME_1\bin\standalone.bat -c standalone-full-ha.xml
  97. Server 2: EAP_HOME_2\bin\standalone.bat -c standalone-full-ha.xml -Djboss.socket.binding.port-offset=100
  98. Access the application
  99. ---------------------
  100. ### Access the Application Running in Domain Dode
  101. The application will be running at the following URL: <http://localhost:9080/jboss-helloworld-mdb/HelloWorldMDBServletClient>.
  102. It will send some messages to the queue.
  103. To send messages to the topic, use the following URL: <http://localhost:9080/jboss-helloworld-mdb/HelloWorldMDBServletClient?topic>
  104. ### Access the Application Running in Standalone Mode
  105. The application will be running at the following URL: <http://localhost:8080/jboss-helloworld-mdb/HelloWorldMDBServletClient>.
  106. It will send some messages to the queue.
  107. To send messages to the topic, use the following URL: <http://localhost:8080/jboss-helloworld-mdb/HelloWorldMDBServletClient?topic>
  108. Investigate the Server Console Output
  109. -------------------------
  110. Look at the JBoss EAP server console or log and you should see log messages like the following:
  111. [Server:jdf-hornetqcluster-node1] 16:34:41,165 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-8 (HornetQ-client-global-threads-1067469862)) Received Message from queue: This is message 1
  112. [Server:jdf-hornetqcluster-node1] 16:34:41,274 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-8 (HornetQ-client-global-threads-1067469862)) Received Message from queue: This is message 3
  113. [Server:jdf-hornetqcluster-node1] 16:34:41,323 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-6 (HornetQ-client-global-threads-1067469862)) Received Message from queue: This is message 5
  114. [Server:jdf-hornetqcluster-node2] 16:34:41,324 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-8 (HornetQ-client-global-threads-1771031398)) Received Message from queue: This is message 2
  115. [Server:jdf-hornetqcluster-node2] 16:34:41,330 INFO [class org.jboss.as.quickstarts.mdb.HelloWorldQueueMDB] (Thread-7 (HornetQ-client-global-threads-1771031398)) Received Message from queue: This is message 4
  116. Note that the logging indicates messages have arrived from both node 1 (jdf-hornetqcluster-node1) as well as node 2 (jdf-hornetqcluster-node2).
  117. Undeploy the Archive
  118. --------------------
  119. When you are finished testing, use the following instructions to undeploy the quickstart.
  120. ### Undeploy the quickstart in Domain Mode
  121. 1. Make sure you have started the JBoss EAP server in domain mode as described above.
  122. 3. Open a command prompt, navigate to the root directory of this quickstart, and run the following command to undeploy the helloworld-mdb quickstart:
  123. For Linux: EAP_HOME/bin/jboss-cli.sh --connect --file=undeploy-domain.cli
  124. For Windows: EAP_HOME\bin\jboss-cli.bat --connect --file=undeploy-domain.cli
  125. ### Undeploy the quickstart in Standalone Mode
  126. 1. Make sure you have started the JBoss EAP server in standalone mode as described above.
  127. 3. Open a command prompt, navigate to the root directory of this quickstart, and run the following command to undeploy the helloworld-mdb quickstart:
  128. For Linux: EAP_HOME_1/bin/jboss-cli.sh --connect --file=undeploy-standalone.cli
  129. For Windows: EAP_HOME_1\bin\jboss-cli.bat --connect --file=undeploy-standalone.cli
  130. Remove the Server Configuration
  131. --------------------
  132. ### Remove the Domain Server Configuration
  133. You can remove the domain configuration by manually restoring the back-up copies the configuration files or by running the JBoss CLI Script.
  134. #### Remove the Domain Server Configuration Manually
  135. _Note: This method ensures the server is restored to its prior configuration._
  136. 1. If it is running, stop the JBoss EAP server.
  137. 2. Restore the `EAP_HOME/domain/configuration/domain.xml` and `EAP_HOME/domain/configuration/host.xml` files with the back-up copies of the files. Be sure to replace EAP_HOME with the path to your server.
  138. #### Remove the Domain Server Configuration by Running the JBoss CLI Script
  139. _Note: This script returns the server to a default configuration and the result may not match the server configuration prior to testing this quickstart. If you were not running with the default configuration before testing this quickstart, you should follow the intructions above to manually restore the configuration to its previous state._
  140. 1. Start the JBoss EAP server by typing the following:
  141. For Linux: EAP_HOME/bin/domain.sh
  142. For Windows: EAP_HOME\bin\domain.bat
  143. 2. Open a new command prompt, navigate to the root directory of this quickstart, and run the following command, replacing EAP_HOME with the path to your server.
  144. For Linux: EAP_HOME/bin/jboss-cli.sh --connect --file=remove-domain.cli
  145. For Windows: EAP_HOME\bin\jboss-cli.bat --connect --file=remove-domain.cli
  146. This script removes the server configuration that was done by the `install-domain.cli` script. You should see the following result following the script commands:
  147. The batch executed successfully.
  148. _Note: If the `:stop-server` command does not complete before the the next commands are issued, you may see an error similar to the following:
  149. {"JBAS014653: Composite operation failed and was rolled back. Steps that failed:" => {"Operation step-1" => "JBAS010977: Server (jdf-hornetqcluster-node1) still running"}}
  150. Simply wait a few seconds and run the command a second time.
  151. ### Remove the Standalone Server Configuration
  152. You can remove the domain configuration by manually restoring the back-up copies the configuration files or by running the JBoss CLI Script.
  153. #### Remove the Standalone Server Configuration Manually
  154. _Note: This method ensures the server is restored to its prior configuration._
  155. 1. If they are running, stop both JBoss EAP servers.
  156. 2. Restore the `EAP_HOME_1/standalone/configuration/standalone-full-ha.xml` file with the back-up copies of the file. Be sure to replace EAP_HOME_1 with the path to your server.
  157. #### Remove the Standalone Configuration by Running the JBoss CLI Script
  158. _Note: This script returns the server to a default configuration and the result may not match the server configuration prior to testing this quickstart. If you were not running with the default configuration before testing this quickstart, you should follow the intructions above to manually restore the configuration to its previous state._
  159. 1. Start the JBoss EAP server by typing the following:
  160. For Linux: EAP_HOME_1/bin/standalone.sh -c standalone-full-ha.xml
  161. For Windows: EAP_HOME_1\bin\domain.bat -c standalone-full-ha.xml
  162. 2. Open a new command prompt, navigate to the root directory of this quickstart, and run the following command, replacing EAP_HOME_1 with the path to your server.
  163. For Linux: EAP_HOME_1/bin/jboss-cli.sh --connect --file=remove-standalone.cli
  164. For Windows: EAP_HOME_1\bin\jboss-cli.bat --connect --file=remove-standalone.cli
  165. This script removes the server configuration that was done by the `install-standalone.cli` script. You should see the following result following the script commands:
  166. The batch executed successfully.
  167. ### Delete the Cloned Standalone JBoss EAP Directory
  168. 1. If it is running, stop the second instance of the JBoss EAP server.
  169. 2. Delete the cloned directory.