December 2017
Intermediate to advanced
316 pages
6h 58m
English
We can easily install Supervisord using Python’s pip command. On Ubuntu 16.04, just use the apt-get command:
sudo apt-get install -y supervisor
This installs two tools, supervisor and supervisorctl. Supervisorctl is intended to control the supervisor and add tasks, restart tasks, and so on. Let us use the sample basicServre.go program we created for illustrating Nginx for this too. Install the binary to the $GOPATH/bin directory. Here, suppose my GOPATH is /root/workspace:
go install github.com/narenaryan/basicServer
Read now
Unlock full access