August 2016
Intermediate to advanced
390 pages
8h 22m
English
Stopping the application server can be done in several ways. Sending an interrupt signal (Ctrl + C) will interrupt the server abruptly, so it's not a recommended option.
So it is sending a kill -9 signal from the terminal against the application server process which is an extreme option to be used when the application server is not responsive through management channels.
The recommended approach is to connect through the Command Line Interface and execute the shutdown command:
jboss-cli.sh from JBOSS_HOME/bin.[disconnected /] connect 127.0.0.1:9990 Connected to 127.0.0.1:9990
Read now
Unlock full access