Golang : Terminate-stay-resident or daemonize your program?
Back in the old days of DOS, the concept of terminate-stay-resident via interrupt 27 is popular among programmers looking to write programs that does not terminate but remain active in the memory and can be easily invoked with couple of keys combinations. Programs such as multi-tasking utilities or viruses normally utilised terminate-stay-resident concept. In Unix/Linux world, the equivalent concept is call ...daemonizing your program.
Found this interesting package (https://github.com/icattlecoder/godaemon) from a Golang Facebook page on how to daemonize your Go program easily. All you have to do is to include the package and then add the parameter -d=true
when launching your program.
For example :
package main
import (
_ "github.com/icattlecoder/godaemon" //<---here!
"log"
"net/http"
)
func main() {
mux := http.NewServeMux()
mux.HandleFunc("/index", func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("hello, golang!\n"))
})
log.Fatalln(http.ListenAndServe(":8080", mux))
}
and
./example -d=true
~$ curl http://localhost:8080/index
hello, golang!
Now, you might ask ...won't it be easier to add '&'
symbol at the end of the program to make it into a background program in Linux/Unix?
A reply in the Facebook group provides a reasonable answer :
"As far as I know, for a daemon, the process is not tied to anything except init itself. With command & the process will be killed by a SIGHUP signal when the parent dies (in this case terminal). The very first process to be started on a Unix system is init, the daemon being a child of that process means that it is not under your direct control as an non-privileged user. Running it as a daemon causes the process to fork from the init itself."
Hope this simple tutorial can be useful to you!
References :
https://www.facebook.com/groups/206770519471402/
https://github.com/icattlecoder/godaemon
http://en.wikipedia.org/wiki/Terminateandstayresidentprogram
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+9.4k nginx: [emerg] bind() to 0.0.0.0:80 failed (98: Address already in use)
+17.9k Golang : [json: cannot unmarshal object into Go value of type]
+24.9k Golang : How to print rune, unicode, utf-8 and non-ASCII CJK(Chinese/Japanese/Korean) characters?
+26.5k Golang : Calculate future date with time.Add() function
+21.3k Golang : Convert(cast) string to rune and back to string example
+9k Golang : On lambda, anonymous, inline functions and function literals
+8.9k Golang : Random integer with rand.Seed() within a given range
+7.2k Golang : constant 20013 overflows byte error message
+18.1k Golang : How to make a file read only and set it to writable again?
+6k Golang : List all packages and search for certain package
+8.6k Golang : Ackermann function example
+23.7k Golang : Get ASCII code from a key press(cross-platform) example