Reputation: 5615
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
Upvotes: 0
Views: 2902
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
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