Re: [pylons-discuss] about pserve --stop-daemon --pid-file

2017-04-23 Thread Michael Merickel
I sympathize that no one has given an option that works on windows with python 3. I only know of a few solutions: 1) Just stop trying to use a process manager inside your process manager. Use the windows service as is to start/stop things as it is intended to do. 2) Use python 2 to run

Re: [pylons-discuss] about pserve --stop-daemon --pid-file

2017-04-23 Thread Steve Piercy
It does not. See http://supervisord.org/introduction.html#platform-requirements and https://github.com/Supervisor/supervisor#supported-platforms You could use a different process manager as noted in the What's New for Pyramid 1.6 Deprecations.

Re: [pylons-discuss] about pserve --stop-daemon --pid-file

2017-04-23 Thread Guohuang Chen
$ pip install supervisor Collecting supervisor Downloading supervisor-3.3.1.tar.gz (415kB) Complete output from command python setup.py egg_info: Supervisor requires Python 2.4 or later but does not work on any version of Python 3. You are using version 3.6.0 (v3.6.0:41df79263a11, Dec

Re: [pylons-discuss] about pserve --stop-daemon --pid-file

2017-04-23 Thread Guohuang Chen
so can you commend a process manager tool under windows? 在 2017年4月22日星期六 UTC+8上午12:20:05,Bert JW Regeer写道: > > Hello, > > We have removed all daemonization code from pserve. We recommend using a > process manager like supervisord or systemd for managing the lifetime of > the process. > > Bert