Girdhar Singh Rathore
Girdhar Singh Rathore

Reputation: 5615

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

Upvotes: 0

Views: 2902

Answers (1)

newohybat
newohybat

Reputation: 186

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

Upvotes: 3

Related Questions