Report this

What is the reason for this report?

How to run java jar as a service in ubuntu 16.04

Posted on August 1, 2016

I have one java jar , i want to run that jar as a service on ubuntu16.04 server. I also want to run according to my run level. Please suggest something like configuration file or script.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Let me know if I am not understanding. As I understand your question you…

Have a jar you are running directly.

Want this jar to be launched (as a daemon?) automatically on boot (act as a service)

You want the service to be triggered based on the runlevel reported by linux

  • 3 Multi-User Mode with Networking Starts the system normally.
  • 4 Undefined Not used/User-definable
  • 5 X11 As runlevel 3 + display manager(X)
  • 6 Reboot Reboots the system

I assume this means you want something to happen based on whether the server is in multi-user mode, single-user mode or in a Graphical X.org environment?

If that is the case, the current runlevel can be determined with the command runlevel so you could pretty easily script different actions based on the runlevel. I’d be happy to help you put together a basic script if you can share a little more information on what outcome are looking for.

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.