diff options
author | Jim Campbell <jcampbell@gnome.org> | 2015-05-19 01:54:50 -0500 |
---|---|---|
committer | Jim Campbell <jcampbell@gnome.org> | 2015-05-19 01:54:50 -0500 |
commit | 52628d64a4c96366489c110dbf83ebb41b5d69f7 (patch) | |
tree | 06dd6627122cac6e3b5b0199b045a8bd0a3f29c0 /docs | |
parent | 4c89287c3ddfdecf30731834369f485c7bef0673 (diff) | |
download | mediagoblin-52628d64a4c96366489c110dbf83ebb41b5d69f7.tar.lz mediagoblin-52628d64a4c96366489c110dbf83ebb41b5d69f7.tar.xz mediagoblin-52628d64a4c96366489c110dbf83ebb41b5d69f7.zip |
docs: Set paster service to start before celery
For some reason, celery wouldn't start if I started it first.
Setting paster to start first. Celery starts just fine on initial run
after paster is running.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/source/siteadmin/production-deployments.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/source/siteadmin/production-deployments.rst b/docs/source/siteadmin/production-deployments.rst index 9174f2fb..add2cd87 100644 --- a/docs/source/siteadmin/production-deployments.rst +++ b/docs/source/siteadmin/production-deployments.rst @@ -129,7 +129,8 @@ Enable these processes to start at boot by entering:: Start the processes for the current session with:: - sudo systemctl start mediagoblin-celeryd.service && sudo systemctl start mediagoblin-paster.service + sudo systemctl start mediagoblin-paster.service + sudo systemctl start mediagoblin-celeryd.service If either command above gives you an error, you can investigate the cause of |