Skip to content

solarless/simple-daemon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Simple Daemon =)

Playing around concept of UNIX daemon (background process).

In this simple script I'm trying to implement proper daemonization mechanism, according to this page, only for Unix-like systems.

How to run

  • python3 daemon.py start — starts the daemon. Daemon itself produces stub messages into log file so you can see it's working.
  • python3 daemon.py stop — stops the daemon.