Commande non valide WSGIDaemonProcess Déployer application Django sur CentOS 6.7

Je suis en utilisant Django 1.8 sur CentOS 6.7 avec Apache version du Serveur: Apache/2.2.15 (Unix).

J'ai suivi les étapes de Comment Servir Django Applications avec Apache et mod_wsgi sur CentOS 7.
Mais à la dernière étape, quand je démarre le Apache serveur avec la commande : service httpd start au lieu de systemctl start httpd car j'ai Centos 6.7 pas CentOS 7 en fonction de tutoriel.

C'est de donner le message d'erreur suivant:

Starting httpd: Syntax error on line 10 of /etc/httpd/conf.d/django.conf:
Invalid command 'WSGIDaemonProcess', perhaps misspelled or defined by a module ot included in the server configuration

vous pouvez vérifier l'django.conf ici:

Alias /static /home/ftpispy/ispy/static
<Directory /home/ftpispy/ispy/static>
    Require all granted
</Directory>
<Directory /home/ftpispy/ispy/ispy>
    <Files wsgi.py>
        Require all granted
    </Files>
</Directory>
WSGIDaemonProcess ispy python-path=/home/ftpispy/ispy:/home/ftpispy/ispy/venv/lib/python2.7/site-packages
WSGIProcessGroup ispy
WSGIScriptAlias / /home/ftpispy/ispy/ispy/wsgi.py

Merci à l'avance.Veuillez indiquer toute autre option déployer sur CentOS 6.7 avec djnago 1.8.

OriginalL'auteur Himanshu dua | 2015-10-24