forked from 0x2620/pandora
simplyfy celery queue deployment
This commit is contained in:
parent
a8ccf08cd0
commit
7013814af8
5 changed files with 21 additions and 49 deletions
|
@ -8,7 +8,12 @@ stop on runlevel [!2345]
|
||||||
|
|
||||||
respawn
|
respawn
|
||||||
|
|
||||||
chdir /srv/pandora/pandora
|
env VENV=/srv/pandora
|
||||||
|
env USER=pandora
|
||||||
exec /bin/su pandora -s /usr/bin/python2.6 /srv/pandora/pandora/bin/pandora-encoding
|
|
||||||
|
|
||||||
|
script
|
||||||
|
test -e /var/log/pandora || (mkdir -p /var/log/pandora && chown $USER:$USER /var/log/pandora)
|
||||||
|
cd $VENV/pandora
|
||||||
|
exec /usr/bin/sudo -u pandora $VENV/bin/python $VENV/pandora/manage.py celeryd \
|
||||||
|
-Q encoding -f /var/log/pandora/pandora-enncoding.log -l INFO
|
||||||
|
end script
|
||||||
|
|
|
@ -8,7 +8,12 @@ stop on runlevel [!2345]
|
||||||
|
|
||||||
respawn
|
respawn
|
||||||
|
|
||||||
chdir /srv/pandora/pandora
|
env VENV=/srv/pandora
|
||||||
|
env USER=pandora
|
||||||
exec /bin/su pandora -s /usr/bin/python2.6 /srv/pandora/pandora/bin/pandora-tasks
|
|
||||||
|
|
||||||
|
script
|
||||||
|
test -e /var/log/pandora || (mkdir -p /var/log/pandora && chown $USER:$USER /var/log/pandora)
|
||||||
|
cd $VENV/pandora
|
||||||
|
exec /usr/bin/sudo -u pandora $VENV/bin/python $VENV/pandora/manage.py celeryd \
|
||||||
|
-Q tasks -f /var/log/pandora/pandora-tasks.log -l INFO
|
||||||
|
end script
|
||||||
|
|
|
@ -12,6 +12,10 @@ env VENV=/srv/pandora
|
||||||
env USER=pandora
|
env USER=pandora
|
||||||
|
|
||||||
script
|
script
|
||||||
|
test -e /var/log/pandora || (mkdir -p /var/log/pandora && chown $USER:$USER /var/log/pandora)
|
||||||
cd $VENV/pandora
|
cd $VENV/pandora
|
||||||
exec sudo -u $USER $VENV/bin/gunicorn_django -b 127.0.0.1:2620 -w5 $VENV/pandora/settings.py
|
exec /usr/bin/sudo -u $USER $VENV/bin/gunicorn_django \
|
||||||
|
-b 127.0.0.1:2620 \
|
||||||
|
--log-level info --log-file /var/log/pandora/pandora.log \
|
||||||
|
-w5 $VENV/pandora/settings.py
|
||||||
end script
|
end script
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
#!/usr/bin/python
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
import site
|
|
||||||
|
|
||||||
project_module = 'pandora'
|
|
||||||
|
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
|
|
||||||
|
|
||||||
#using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|
||||||
execfile(activate_this, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
sys.path.append(root_dir)
|
|
||||||
sys.path.append(os.path.join(root_dir, project_module))
|
|
||||||
|
|
||||||
from django.core.management import execute_manager
|
|
||||||
|
|
||||||
import settings
|
|
||||||
execute_manager(settings, ['celeryd', 'celeryd', '-Q' 'encoding'])
|
|
||||||
|
|
|
@ -1,21 +0,0 @@
|
||||||
#!/usr/bin/python
|
|
||||||
import os
|
|
||||||
import sys
|
|
||||||
import site
|
|
||||||
|
|
||||||
project_module = 'pandora'
|
|
||||||
|
|
||||||
root_dir = os.path.normpath(os.path.abspath(os.path.join(os.path.dirname(__file__), '..', '..')))
|
|
||||||
|
|
||||||
#using virtualenv's activate_this.py to reorder sys.path
|
|
||||||
activate_this = os.path.join(root_dir, 'bin', 'activate_this.py')
|
|
||||||
execfile(activate_this, dict(__file__=activate_this))
|
|
||||||
|
|
||||||
sys.path.append(root_dir)
|
|
||||||
sys.path.append(os.path.join(root_dir, project_module))
|
|
||||||
|
|
||||||
from django.core.management import execute_manager
|
|
||||||
|
|
||||||
import settings
|
|
||||||
execute_manager(settings, ['celeryd', 'celeryd', '-Q' 'default'])
|
|
||||||
|
|
Loading…
Reference in a new issue