Search code examples
jbossjboss-eap-6

how to redeploy application using management console in jboss EAP 6.3.0 GA?


I am using JBOSS EAP 6.3.0, I want to redeploy my application using management console. I don't see redeploy or enable/disable or refresh option under below section

Runtime>>Manage Deployments

enter image description here


Solution

  • EDIT: The question was related to domain mode. See comments.

    ORIGINAL: The section you mention is correct. You can try different browser as I see no issues as you can check in this screenshot

    If you want an alternative you can use jboss-cli.sh (.bat) for this purpose:

    $JBOSS_HOME/bin/jboss-cli.sh -c --command="/deployment=DEPLOYMENT_NAME:redeploy"
    

    or interactive mode

    $JBOSS_HOME/bin/jboss-cli.sh -c
    > /deployment= [you can use tab to get deployment-name hints] 
    > /deployment=DEPLOYMENT_NAME:redeploy