Answer by Joe Saad for Jboss 7.1.1 start/stop script
This is how I do it: ps -ef | grep jboss | grep -v grep | awk '{print $2}' | xargs kill -9I have this in a bash file that i call killjboss and it works well with me.
View ArticleAnswer by Gaspar Kuhnen for Jboss 7.1.1 start/stop script
After dive on the Google, i managed to put this work:#!/bin/sh ### BEGIN INIT INFO # Provides: jboss # Required-Start: $local_fs $remote_fs $network $syslog # Required-Stop: $local_fs $remote_fs...
View ArticleAnswer by abhishekhp for Jboss 7.1.1 start/stop script
To shutdown the server via command line sh ./bin/jboss-cli.sh --connect command=:shutdown assuming you are running on localhost and using the default native management port i.e. 9999if not you need to...
View ArticleAnswer by Eugene for Jboss 7.1.1 start/stop script
1) First you need to have JBoss downloaded. (I assume you already have valid Java version installed).2) Once it is downloaded, unzip the folder: cd /Users/eugene/Downloads mkdir JBOSS-7 cp...
View ArticleJboss 7.1.1 start/stop script
Could someone tell how to start/stop the Jboss-7.1.1 server in MAC using Shell Script. stop_viewer(){echo "********* Stopping JBoss Server by killing the process **********";ps | grep domain.sh | grep...
View Article