ソースを参照

Moved daemonizing stuff into cookbook. Needs fleshing out.

runeh 15 年 前
コミット
e0a05350db

+ 2 - 3
docs/getting-started/first-steps-with-django.rst

@@ -49,10 +49,9 @@ see what's going on without consulting the logfile::
 
 However, in production you probably want to run the worker in the
 background as a daemon. To do this you need to use to tools provided by your
-platform, or something like `supervisord`_. FIXME: See solutions for deamonizing.
+platform. See :doc:`daemon mode reference<../cookbook>`.
 
-For a complete listing of the command line arguments available, with a short
-description, you can use the help command::
+For a complete listing of the command line options available, use the help command::
 
     $ python manage.py help celeryd
 

+ 3 - 12
docs/getting-started/first-steps-with-only-celery.rst

@@ -82,9 +82,7 @@ There are more options available, like how many processes you want to
 process work in parallel (the ``CELERY_CONCURRENCY`` setting), and we
 could use a persistent result store backend, but for now, this should
 do. For all of the options available, see the 
-:doc:`configuration directive
-
-reference<../configuration>`.
+:doc:`configuration directive reference<../configuration>`.
 
 Running the celery worker server
 ================================
@@ -103,15 +101,8 @@ help command::
 
     $  celeryd --help
 
-
-FIXME: Move this to a FAQ section or something and link it from the
-supervisord line above:
-
-For example start-up scripts see ``contrib/debian/init.d`` for using
-``start-stop-daemon`` on Debian/Ubuntu, or ``contrib/mac/org.celeryq.*`` for using
-``launchd`` on Mac OS X.
-
-.. _`supervisord`: http://supervisord.org/
+For info on how to run celery as standalone daemon, see 
+:doc:`daemon mode reference<../cookbook>`