Somehow I am getting problems starting Jetty via
service jetty start
We will be using unix command called nohup
“Nohup is a unix command, used to start another program, in such a way that it does not terminate when the parent process is terminated.”
I have opted out for using this
nohup java -jar start.jar -Djetty.port=8085
while this works it shown an message
nohup: ignoring input and appending output to `nohup.out'
to fix that up we need to redirect in put and output to /dev/null
nohup java -jar start.jar -Djetty.port=8085 /dev/null &