Skip to main content

Helper Management commands to host Django applications on Windows Servers.

Project description

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.

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.

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 Distribution

django-windows-tools-0.1.zip (30.5 kB view details)

Uploaded Source

Built Distribution

django-windows-tools-0.1.win32.exe (228.7 kB view details)

Uploaded Source

File details

Details for the file django-windows-tools-0.1.zip.

File metadata

File hashes

Hashes for django-windows-tools-0.1.zip
Algorithm Hash digest
SHA256 e1d6818ed0a104e96fca592c33f11aae4146549cb25cb24b7b09940cb6596467
MD5 a982e91e1075038ccd6a6a9793cfd8ef
BLAKE2b-256 73b89cb9232b883c9c20d53299bc359a46d25ae268341b7c8fb806c3fce663e8

See more details on using hashes here.

File details

Details for the file django-windows-tools-0.1.win32.exe.

File metadata

File hashes

Hashes for django-windows-tools-0.1.win32.exe
Algorithm Hash digest
SHA256 746f50a50346aab54d10a6c3df084303eb1fdecf28514d9802f9be2b661840ad
MD5 5992c71668fdc91ef8624dd8d53150fa
BLAKE2b-256 286b3835f92e6dd4bb2acb259e2876864fbe1625170d8722d8d397fda0b375b0

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page