Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #77791

Re: Example of python service running under systemd?

References <FE4C3550-8958-4F72-8AFE-62AA7248D6AF@gmail.com> <CAMw+j7+LQL_+77ejCFVSqWap7Rk9gS_Wu5d3y0gT1UpB8hiZAA@mail.gmail.com> <6B97B7A5-0816-401E-9BDD-A23FFC646985@gmail.com> <20140911212921.GB26465@arxnet.hu> <5412548A.1090507@gmail.com>
Date 2014-09-12 12:29 +1000
Subject Re: Example of python service running under systemd?
From Chris Angelico <rosuav@gmail.com>
Newsgroups comp.lang.python
Message-ID <mailman.13954.1410488971.18130.python-list@python.org> (permalink)

Show all headers | View raw


On Fri, Sep 12, 2014 at 12:03 PM, Michael Torrie <torriem@gmail.com> wrote:
> No, you you don't need to do this.  Systemd can handle all of that for
> you.  Read up on the docs on creating systemd services.  Here's a little
> blog post that has some good examples, both a non-daemonizing service
> and a daemonizing service:
>
> http://patrakov.blogspot.com/2011/01/writing-systemd-service-files.html
>
> Any executable file can be turned into a daemon service with systemd
> (whether or not it forks itself into the background).  Thus any python
> script can easily be run from systemd.

I strongly recommend making a non-daemonizing service. It's so much
easier to debug - there's one mode of operation, the script just runs.
You can then run that directly in a terminal, or via tmux, or via
systemd - and I've done all three with Yosemite. In fact, I think I
have instances here on the LAN that are doing all three, right now!

ChrisA

Back to comp.lang.python | Previous | Next | Find similar | Unroll thread


Thread

Re: Example of python service running under systemd? Chris Angelico <rosuav@gmail.com> - 2014-09-12 12:29 +1000

csiph-web