Start, Stop and Restart Wildfly
If your memory likes to trick you like mine does, this post is for you. Below are the three most important commands for start, stop and restart Wildfly and JBoss late releases. Also, an extra for starting it in domain mode.
Everything should be done into your <$JBOSS_HOME>/bin
folder:
Start
Linux:
./standalone.sh &
Windows:
standalone.bat
Stop
Linux:
./jboss-cli.sh --connect command=:shutdown
Windows:
jboss-cli.bat --connect command=:shutdown
Restart
Linux:
./jboss-cli.sh --connect command=:reload
Windows:
jboss-cli.bat --connect command=:reload
Start in domain mode
Linux:
./domain.sh &
Windows:
domain.bat
No comments:
Post a Comment