I have a server running CentOS, which I am configuring and I would like to have a java service startup automatically when the server is restarted how can I go about doing this?

The command to run the service is:

java -jar testing.jar

this is located in folder /sys/java/service.

Also being new to Linux how can I actually kill the service if I need to?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Put the command in /etc/rc.local

the best option would be running it as a dedicated user as in

su - username -c "java -jar /sys/java/service/testing.jar"

you can kill the service then with

pkill -u username java
link|improve this answer
Thanks for the quick response! Much appreciated. – Dino Dec 9 '11 at 21:30
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.