Advertisement
Guest User

Untitled

a guest
Feb 28th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. ### Applying JBoss Patch
  2. --------------------------
  3. 1. Copy your patches to a directory on the server (e.g. JBOSS_HOME/patches)
  4.  
  5. 2. Change to the jboss bin directory
  6. cd JBOSS_HOME/bin
  7.  
  8. 3. Connect to JBoss Management Native
  9. ./jboss-cli.sh -c --controller=<ip>:<port> --user=<mgmt username> --password=<mgmt password>
  10.  
  11. 4. Once you're successfully logged in, apply the patch
  12. > patch apply <absolute link to patch> # e.g. patch apply /home/user1/app/jboss-eap-6.4/patches/jboss-eap-6.4.13-patch.zip
  13.  
  14. 5. To see the history of the patches applied so far
  15. > patch history
  16.  
  17. 6. To get information on the last patch applied
  18. > patch info
  19.  
  20. 7. Exit and restart jboss
  21. > exit
  22.  
  23. 8. ./svc-xyz restart
  24.  
  25.  
  26. NB: For this patch, two patches were installed in the following order:
  27. 1. jboss-eap-6.4.9-patch.zip
  28. 2. jboss-eap-6.4.13-patch.zip
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement