2016-05-13 170 views
0

我有我的本地机器上运行的Django,但我到了我想要将我的Django站点部署到我的生产服务器的位置。我的服务器是Ubuntu 14.04服务器,具有Apache 2.x,Python 2.7和Django 1.8。我一直在使用Django的基本配置Apache和mod_wsgi的link试过,但我不断收到以下错误:Django生产部署

my site

Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

这里是在Apache的错误日志我收到的错误:

mod_wsgi (pid=14962): Target WSGI script '/var/www/tmws/tmws/wsgi.py' cannot be loaded as Python module., 
mod_wsgi (pid=14962): Exception occurred processing WSGI script '/var/www/tmws/tmws/wsgi.py'., 
Traceback (most recent call last):, 
File "/var/www/tmws/tmws/wsgi.py", line 21, in <module>, 
    application = get_wsgi_application(), 
File "/usr/local/lib/python2.7/dist-packages/django/core/wsgi.py", line 14, in get_wsgi_application, 
    django.setup(), 
File "/usr/local/lib/python2.7/dist-packages/django/__init__.py", line 18, in setup, 
    apps.populate(settings.INSTALLED_APPS), 
File "/usr/local/lib/python2.7/dist-packages/django/apps/registry.py", line 85, in populate, 
    app_config = AppConfig.create(entry), 
File "/usr/local/lib/python2.7/dist-packages/django/apps/config.py", line 86, in create, 
    module = import_module(entry), 
File "/usr/lib/python2.7/importlib/__init__.py", line 37, in import_module, 
    __import__(name), 
File "/var/www/tmws/django_tables2/__init__.py", line 2, in <module>, 
    from .tables import Table, 
File "/var/www/tmws/django_tables2/tables.py", line 15, in <module>, 
    from . import columns, 
File "/var/www/tmws/django_tables2/columns/__init__.py", line 1, in <module>, 
    from .base import library, BoundColumn, BoundColumns, Column, 
File "/var/www/tmws/django_tables2/columns/base.py", line 10, in <module>, 
    from django_tables2.utils import Accessor, AttributeDict, OrderBy, OrderByTuple, 
File "/var/www/tmws/django_tables2/utils.py", line 111, in <module>, 
    @six.python_2_unicode_compatible, 
AttributeError: 'module' object has no attribute 'python_2_unicode_compatible', 

这里是我的apache2.conf文件:

... 

<Directory /var/www/tmws/tmws> 
    <Files wsgi.py> 
     Require all granted 
    </Files> 
</Directory> 

... 

WSGIScriptAlias//var/www/tmws/tmws/wsgi.py 
WSGIPythonPath /var/www/tmws 

这是我wsgi.py文件:

import os, sys 

from django.core.wsgi import get_wsgi_application 

sys.path.append('/home/ubuntu/gather/src') 
sys.path.append('/usr/local/lib/python2.7/dist-packages') 
sys.path.append('/var/www/tmws') 
sys.path.append('/var/www/tmws/tmws') 

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "tmws.settings") 

application = get_wsgi_application() 

这是我的网站.conf文件:

<VirtualHost *:80> 
    ServerAdmin xxxxxxxx 
    ServerName xxxxxxxxxxx 
    DocumentRoot /var/www/tmws 
    WSGIScriptAlias//var/www/tmws/tmws/wsgi.py 

    ErrorLog ${APACHE_LOG_DIR}/TMWSerror.log 
    CustomLog ${APACHE_LOG_DIR}/TMWSaccess.log combined 

</VirtualHost> 

任何帮助将不胜感激。如果有什么我可以张贴帮助了解我。

+0

您是否正在虚拟环境中运行Django?你可能应该。问题是你使用的是旧版本的'six'。 – solarissmoke

+0

谢谢你的回应。不,我不使用虚拟环境,最终我想。六是什么? – user908759

+3

'six'是一个python库。如果你使用'pip install --upgrade six'升级它,它应该可以工作,但是在系统上python软件包这样做并不理想,因为你可能会与其他系统软件包发生冲突 - 因此更好地使用虚拟环境。 – solarissmoke

回答

1

您的系统可能正在使用旧版本的six python软件包,该软件包不包含python_2_unicode_compatible方法。升级六到最新的版本应该修复它:

pip install --upgrade six 

这就是说,它是强烈建议从虚拟环境,而不是在系统级安装软件包运行Django的 - 如果有系统的软件包,由于某些原因是依赖于旧版本的six,那么你可能会遇到其他问题。