Below is a small method for running Java daemons within Linux. The syntax is as follows:
- nohup is used so that it doesn’t get killed when user logs off
- </dev/null is used so that it doesn’t require a command-promt of it’s own
- & is used so that the Java daemon runs as a background process.
#!/bin/bash
nohup \
[java binary] \
[java file] \
< /dev/null 2>&1 >/dev/null&
Latest posts by Rick Donato (see all)
- NETCONF & YANG: Automate Network Configs via Python - April 2, 2026
- Palo Alto – How to Configure Your Next-Generation Firewall - April 2, 2026
- How to Harden Linux SSH: Keys, Fail2ban & Ciphers - March 1, 2026
Want to become a Linux expert ?
Here is our hand-picked selection of the best courses you can find online:
Linux Mastery course
Linux Administration Bootcamp
and our recommended certification practice exams:
Delta Practice Tests