Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I shutdown JBoss AS 7 server?

I recently updated from jboss-as.7.1.0.CR1b to jboss-as.7.1.0.Final and want to shutdown running instance from the console. In previous versions the command

$JBOSS_HOME/bin/jboss-admin.sh --connect command=:shutdown 

was available, but I do not see jboss-admin.sh in the bin directory or other shell scripts for shutting down the server.

like image 622
Thor Avatar asked Feb 17 '12 11:02

Thor


People also ask

How do I force stop JBoss server?

2.3. To stop the server we can simply press “CTRL+C”.


1 Answers

For some reason the JBoss team decided to reorganize the scripts between minor revision upgrades. In any case, jboss-cli.sh is the replacement for jboss-admin.sh (they are for all intents and purposes the exact same script). So your new shutdown command is:

 ./jboss-cli.sh --connect command=:shutdown 
like image 187
Perception Avatar answered Nov 26 '22 01:11

Perception