Helper Management commands to host Django applications on Windows Servers.
Project description
Django-windows-tools
====================
django-windows-tools is a Django application providing management commands to host Django projects in Windows environments.
It provides management commands allowing to:
- Host a Django application behind IIS as a FastCGI application (requires IIS 7 and Up).
- Run Celery and Celery Beat background processes as a Windows Service.
It requires Django 1.4 and pywin32.
The following gives a Quick overview of the project. For more information, please
read the `Project documentation <http://django-windows-tools.readthedocs.org>`_.
Installation and Configuration
##############################
You install the application with the command: ::
pip install django-windows-tools
Or if you're installing from source: ::
python setup.py install
To be able to use the management commands, simply add the ``django_windows_tools`` application to
the project's list in ``settings.py``: ::
INSTALLED_APPS += (
'django_windows_tools',
)
FastCGI Configuration
#####################
Pre-requisites
--------------
On the host machine, you need to have :
- IIS 7 or better installed and running.
- The ``CGI`` module installed.
To host your Django project under ``IIS`` with the binding ``www.mydjangoapp.com``,
you need first to collect your static files with the command: ::
D:\sites\mydjangoapp> python manage.py collectstatic
And then run the following command with Administrator privileges : ::
D:\sites\mydjangoapp> python manage.py winfcgi_install --binding=http://www.mydjangoapp.com:80
The command will do the following:
- Create the FastCGI application to serve your Django application dynamic content.
- Create a site name ``mydjangoapp`` with the ``www.mydjangoapp.com`` binding pointing to the root of your project.
- Install a ``web.config`` file in the root of the project that handles the
redirection of requests to the Django application.
- Create if needed a virtual directory to handle the serving of your static files through ``IIS``.
To remove the site created with the preceding command, type: ::
D:\sites\mydjangoapp> python manage.py winfcgi_install --delete
the ``winfcgi_install`` command provides numerous options. To list them, type: ::
D:\sites\mydjangoapp> python help winfcgi_install
More information on how the configuration is done is provided in
this `Blog post <http://mrtn.me/blog/2012/06/27/running-django-under-windows-with-iis-using-fcgi/>`_.
Running Celery or other Background commands as a Windows Service
################################################################
With the application installed, on the root of your project, type the following command: ::
D:\sites\mydjangoapp> python winservice_install
It will create two files, ``service.py`` and ``service.ini`` in the
root directory of your project. The first one will help you install,
run and remove the Windows Service. Ther later one contain the list of
the management commands that will be run by the Windows Service.
Configuration
-------------
The ``service.ini`` is a configuration file that looks like the following: ::
[services]
# Services to be run on all machines
run=celeryd
clean=d:\logs\celery.log
[BEATSERVER]
# There should be only one machine with the celerybeat service
run=celeryd celerybeat
clean=d:\logs\celerybeat.pid;d:\logs\beat.log;d:\logs\celery.log
[celeryd]
command=celeryd
parameters=-f d:\logs\celery.log -l info
[celerybeat]
command=celerybeat
parameters=-f d:\logs\beat.log -l info --pidfile=d:\logs\celerybeat.pid
[runserver]
# Runs the debug server and listen on port 8000
# This one is just an example to show that any manage command can be used
command=runserver
parameters=--noreload --insecure 0.0.0.0:8000
[log]
filename=d:\logs\service.log
level=INFO
The ``services`` section contains :
- The list of background commands to run in the ``run`` directive.
- The list of files to delete when refreshed or stopped in the ``clean`` directive.
You can have several ``services`` sections in the same configuration file
for different host servers. The Windows Service will try to find the section which name
matches the name of the current server and will fallback to the ``services`` section if it
does not find it. This allows you to deploy the same configuration file on serveral
machines but only have one machine run the celery beat background process. In the preceding
configuration, only the server named ``BEATSERVER`` will run the ``celerybeat`` command.
The other ones will only run the ``celeryd`` command.
For each command name specified in the ``run`` directive, there must be a matching configuration
section. The section contains two directives:
- ``command`` specifies the ``manage.py`` command to run.
- ``parameters`` specifies the parameters to the command.
In the previous configuration file, the ``celeryd`` configuration will spawn a process
that will run the same command as : ::
D:\sites\mydjangoapp> python manage.py celeryd -f d:\logs\celery.log -l info
Lastly, the ``log`` section defines the log level and the the log destination file
for the Windows Service.
Installation and start
----------------------
The windows service is installed with the following command (run with
Administrator privileges) : ::
D:\sites\mydjangoapp> python service.py --startup=auto install
It is started and stopped with the commands: ::
D:\sites\mydjangoapp> python service.py start
D:\sites\mydjangoapp> python service.py stop
It can be removed with the following commands: ::
D:\sites\mydjangoapp> python service.py remove
The Windows Service monitor changes to the ``service.ini`` configuration
file. In case it is modified, the service does the following:
- Stop the background processes.
- Reread the configuration file.
- Start the background processes.
Customization
-------------
The ``winservice_install`` management command provides several options
allowing to customize the name of the web service or of the script name.
To obtain information about them, type: ::
D:\sites\mydjangoapp> python help winservice_install
====================
django-windows-tools is a Django application providing management commands to host Django projects in Windows environments.
It provides management commands allowing to:
- Host a Django application behind IIS as a FastCGI application (requires IIS 7 and Up).
- Run Celery and Celery Beat background processes as a Windows Service.
It requires Django 1.4 and pywin32.
The following gives a Quick overview of the project. For more information, please
read the `Project documentation <http://django-windows-tools.readthedocs.org>`_.
Installation and Configuration
##############################
You install the application with the command: ::
pip install django-windows-tools
Or if you're installing from source: ::
python setup.py install
To be able to use the management commands, simply add the ``django_windows_tools`` application to
the project's list in ``settings.py``: ::
INSTALLED_APPS += (
'django_windows_tools',
)
FastCGI Configuration
#####################
Pre-requisites
--------------
On the host machine, you need to have :
- IIS 7 or better installed and running.
- The ``CGI`` module installed.
To host your Django project under ``IIS`` with the binding ``www.mydjangoapp.com``,
you need first to collect your static files with the command: ::
D:\sites\mydjangoapp> python manage.py collectstatic
And then run the following command with Administrator privileges : ::
D:\sites\mydjangoapp> python manage.py winfcgi_install --binding=http://www.mydjangoapp.com:80
The command will do the following:
- Create the FastCGI application to serve your Django application dynamic content.
- Create a site name ``mydjangoapp`` with the ``www.mydjangoapp.com`` binding pointing to the root of your project.
- Install a ``web.config`` file in the root of the project that handles the
redirection of requests to the Django application.
- Create if needed a virtual directory to handle the serving of your static files through ``IIS``.
To remove the site created with the preceding command, type: ::
D:\sites\mydjangoapp> python manage.py winfcgi_install --delete
the ``winfcgi_install`` command provides numerous options. To list them, type: ::
D:\sites\mydjangoapp> python help winfcgi_install
More information on how the configuration is done is provided in
this `Blog post <http://mrtn.me/blog/2012/06/27/running-django-under-windows-with-iis-using-fcgi/>`_.
Running Celery or other Background commands as a Windows Service
################################################################
With the application installed, on the root of your project, type the following command: ::
D:\sites\mydjangoapp> python winservice_install
It will create two files, ``service.py`` and ``service.ini`` in the
root directory of your project. The first one will help you install,
run and remove the Windows Service. Ther later one contain the list of
the management commands that will be run by the Windows Service.
Configuration
-------------
The ``service.ini`` is a configuration file that looks like the following: ::
[services]
# Services to be run on all machines
run=celeryd
clean=d:\logs\celery.log
[BEATSERVER]
# There should be only one machine with the celerybeat service
run=celeryd celerybeat
clean=d:\logs\celerybeat.pid;d:\logs\beat.log;d:\logs\celery.log
[celeryd]
command=celeryd
parameters=-f d:\logs\celery.log -l info
[celerybeat]
command=celerybeat
parameters=-f d:\logs\beat.log -l info --pidfile=d:\logs\celerybeat.pid
[runserver]
# Runs the debug server and listen on port 8000
# This one is just an example to show that any manage command can be used
command=runserver
parameters=--noreload --insecure 0.0.0.0:8000
[log]
filename=d:\logs\service.log
level=INFO
The ``services`` section contains :
- The list of background commands to run in the ``run`` directive.
- The list of files to delete when refreshed or stopped in the ``clean`` directive.
You can have several ``services`` sections in the same configuration file
for different host servers. The Windows Service will try to find the section which name
matches the name of the current server and will fallback to the ``services`` section if it
does not find it. This allows you to deploy the same configuration file on serveral
machines but only have one machine run the celery beat background process. In the preceding
configuration, only the server named ``BEATSERVER`` will run the ``celerybeat`` command.
The other ones will only run the ``celeryd`` command.
For each command name specified in the ``run`` directive, there must be a matching configuration
section. The section contains two directives:
- ``command`` specifies the ``manage.py`` command to run.
- ``parameters`` specifies the parameters to the command.
In the previous configuration file, the ``celeryd`` configuration will spawn a process
that will run the same command as : ::
D:\sites\mydjangoapp> python manage.py celeryd -f d:\logs\celery.log -l info
Lastly, the ``log`` section defines the log level and the the log destination file
for the Windows Service.
Installation and start
----------------------
The windows service is installed with the following command (run with
Administrator privileges) : ::
D:\sites\mydjangoapp> python service.py --startup=auto install
It is started and stopped with the commands: ::
D:\sites\mydjangoapp> python service.py start
D:\sites\mydjangoapp> python service.py stop
It can be removed with the following commands: ::
D:\sites\mydjangoapp> python service.py remove
The Windows Service monitor changes to the ``service.ini`` configuration
file. In case it is modified, the service does the following:
- Stop the background processes.
- Reread the configuration file.
- Start the background processes.
Customization
-------------
The ``winservice_install`` management command provides several options
allowing to customize the name of the web service or of the script name.
To obtain information about them, type: ::
D:\sites\mydjangoapp> python help winservice_install
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
django-windows-tools-0.1.1.zip
(32.7 kB
view details)
Built Distribution
django-windows-tools-0.1.1.win32.exe
(230.7 kB
view details)
File details
Details for the file django-windows-tools-0.1.1.zip
.
File metadata
- Download URL: django-windows-tools-0.1.1.zip
- Upload date:
- Size: 32.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2f55b62224fe603cf54a63af31a91f31d63d1a9357ba82cf3ac6d6759b115dd8 |
|
MD5 | 687c448ac1016df1ba5712a915fec1b9 |
|
BLAKE2b-256 | 871b5c25422ec20b2ff1a6977db342ab9b7711a84f4df83ac8c8f4a8e749f181 |
File details
Details for the file django-windows-tools-0.1.1.tar.gz
.
File metadata
- Download URL: django-windows-tools-0.1.1.tar.gz
- Upload date:
- Size: 24.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9d41bfa2d2b46dddc4e5dbca75fd3bbb3f5345018ac8768bbc4ad9631c543f9 |
|
MD5 | da4deea8ff452e14c2d644e7030c10a0 |
|
BLAKE2b-256 | 865cc42267a6d6bb7db958bc88800ba6f4cadc5f1f440ae29a67e60594a596b6 |
File details
Details for the file django-windows-tools-0.1.1.win32.exe
.
File metadata
- Download URL: django-windows-tools-0.1.1.win32.exe
- Upload date:
- Size: 230.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01023c6c704379a701a9a1147458528a363000b5fd777f9f6a9d73072a80e213 |
|
MD5 | 37bfdfb1c9270abdc3a24cd9babcc312 |
|
BLAKE2b-256 | 003177fdc12fb1d2ed189bd8bec12d4a861813b5ace80cda18ac1850aae7dd84 |