django.core.exceptions.ImproperlyConfigured:SECRET_KEY设置不能为空

时间:2021-03-27 00:24:39

I created a new project in django and pasted some files from another project. Whenever I try to run the server, I get the following error message:

我在django中创建了一个新项目,并粘贴了另一个项目中的一些文件。每当我尝试运行服务器时,都会收到以下错误消息:

    Traceback (most recent call last):
      File "manage.py", line 10, in <module>
        execute_from_command_line(sys.argv)
      File "/Library/Python/2.7/site-packages/django/core/management/__init__.py", line 385, in execute_from_command_line
        utility.execute()
      .
      .
      .
            File "/Library/Python/2.7/site-packages/django/conf/__init__.py", line 115, in __init__
        raise ImproperlyConfigured("The SECRET_KEY setting must not be empty.")
    django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty.

Here's my settings.py

这是我的settings.py

""" Django settings for dbe project.  """

# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
import os
from os.path import join as pjoin
BASE_DIR = os.path.dirname(os.path.dirname(__file__))


# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.7/howto/deployment/checklist/


# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
TEMPLATE_DEBUG = True
ALLOWED_HOSTS = []

INSTALLED_APPS = (
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'shared',
    'issues',
    'blog',
    'bombquiz',
    'forum',
    'portfolio',
    'questionnaire',
)

MIDDLEWARE_CLASSES = (
    'django.contrib.sessions.middleware.SessionMiddleware',
    'django.middleware.common.CommonMiddleware',
    'django.middleware.csrf.CsrfViewMiddleware',
    'django.contrib.auth.middleware.AuthenticationMiddleware',
    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
    'django.contrib.messages.middleware.MessageMiddleware',
    'django.middleware.clickjacking.XFrameOptionsMiddleware',
)

TEMPLATE_DIRS = (
     os.path.join(BASE_DIR, "templates"),
     os.path.join(BASE_DIR, "templates", "issues"),
     os.path.join(BASE_DIR, "templates", "blog"),
     os.path.join(BASE_DIR, "templates", "bombquiz"),
     os.path.join(BASE_DIR, "templates", "forum"),
     os.path.join(BASE_DIR, "templates", "portfolio"),
     os.path.join(BASE_DIR, "templates", "questionnaire"),
     )

ROOT_URLCONF = 'dbe.urls'

WSGI_APPLICATION = 'dbe.wsgi.application'


# Database
# https://docs.djangoproject.com/en/1.7/ref/settings/#databases

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
    }
}

LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'UTC'
USE_I18N = True
USE_L10N = True
USE_TZ = True

# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.7/howto/static-files/

MEDIA_URL = '/media/'
MEDIA_ROOT = pjoin(BASE_DIR, "media")
STATIC_URL = '/static/'
STATICFILES_DIRS = (
                    pjoin(BASE_DIR, "static"),
                    )

try:
    from local_settings import *
except:
    pass

Here's manage.py as well

这里也是manage.py

#!/usr/bin/env python
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "dbe.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)

Any help? Thanks!

有帮助吗?谢谢!

2 个解决方案

#1


17  

Just like the error says, you have no SECRET_KEY defined. You need to add one to your settings.py.

就像错误说的那样,你没有定义SECRET_KEY。您需要在settings.py中添加一个。

Django will refuse to start if SECRET_KEY is not set.

如果没有设置SECRET_KEY,Django将拒绝启动。

You can read more about this setting in the docs.

您可以在文档中阅读有关此设置的更多信息。

The SECRET_KEY can be just about anything...but if you want to use Django to generate one, you can do the following from the python shell:

SECRET_KEY可以是任何东西......但如果你想使用Django生成一个,你可以从python shell执行以下操作:

>>> from django.utils.crypto import get_random_string
>>> chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)'
>>> SECRET_KEY = get_random_string(50, chars)
>>> print SECRET_KEY

Copy the SECRET_KEY to your settings file.

将SECRET_KEY复制到您的设置文件。

#2


3  

SECRET_KEY variable in settings.py should be kept secret

settings.py中的SECRET_KEY变量应保密

You can place the string secret key generated with the get_random_stringfunction above (as said @rnevius ) in settings.py but use a function that get the variable.

您可以将上面使用get_random_string函数生成的字符串密钥(如所述@rnevius)放在settings.py中,但使用获取变量的函数。

This means, that for security reasons, it is better to hide the content of SECRET_KEY variable.

这意味着,出于安全原因,最好隐藏SECRET_KEY变量的内容。

You can define an environment variable as follow:

您可以定义一个环境变量,如下所示:

In your $HOME/.bashrc or $HOME/.zshrc or /etc/bashrc or /etc/bash.bashrc according to your unix operating system and terminal manager that you use:

根据您使用的unix操作系统和终端管理器,在$ HOME / .bashrc或$ HOME / .zshrc或/ etc / bashrc或/etc/bash.bashrc中:

export SECRET_KEY='value_of_the_secret_key_generated_by_get_random_string_function'

you can look something like this:

你可以看起来像这样:

export SECRET_KEY='lmrffsgfhrilklg-za7#57vi!zr)ps8)2anyona25###dl)s-#s=7=vn_'

And in the settings.py you can add this:

在settings.py中,您可以添加:

import os
from django.core.exceptions import ImproperlyConfigured

def get_env_variable(var_name):
    try:
        return os.environ[var_name]
    except KeyError:
        error_msg = "Set the %s environment variable" % var_name
        raise ImproperlyConfigured(error_msg)

SECRET_KEY = get_env_variable('SECRET_KEY')

The function get_env_variable tries to get the variable var_name from the environment, and if it doesn’t find it, it raises an ImproperlyConfigured error. Using it in this way, when you try to run your app and the SECRET_KEY variable is not found, you will be able to see a message indicating why our project fails.

函数get_env_variable尝试从环境中获取变量var_name,如果找不到它,则会引发一个ImproperlyConfigured错误。以这种方式使用它,当您尝试运行应用程序并且找不到SECRET_KEY变量时,您将能够看到一条消息,指示我们的项目失败的原因。

Also you can protect the secret content variables of the project in this way.

您也可以通过这种方式保护项目的秘密内容变量。

#1


17  

Just like the error says, you have no SECRET_KEY defined. You need to add one to your settings.py.

就像错误说的那样,你没有定义SECRET_KEY。您需要在settings.py中添加一个。

Django will refuse to start if SECRET_KEY is not set.

如果没有设置SECRET_KEY,Django将拒绝启动。

You can read more about this setting in the docs.

您可以在文档中阅读有关此设置的更多信息。

The SECRET_KEY can be just about anything...but if you want to use Django to generate one, you can do the following from the python shell:

SECRET_KEY可以是任何东西......但如果你想使用Django生成一个,你可以从python shell执行以下操作:

>>> from django.utils.crypto import get_random_string
>>> chars = 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)'
>>> SECRET_KEY = get_random_string(50, chars)
>>> print SECRET_KEY

Copy the SECRET_KEY to your settings file.

将SECRET_KEY复制到您的设置文件。

#2


3  

SECRET_KEY variable in settings.py should be kept secret

settings.py中的SECRET_KEY变量应保密

You can place the string secret key generated with the get_random_stringfunction above (as said @rnevius ) in settings.py but use a function that get the variable.

您可以将上面使用get_random_string函数生成的字符串密钥(如所述@rnevius)放在settings.py中,但使用获取变量的函数。

This means, that for security reasons, it is better to hide the content of SECRET_KEY variable.

这意味着,出于安全原因,最好隐藏SECRET_KEY变量的内容。

You can define an environment variable as follow:

您可以定义一个环境变量,如下所示:

In your $HOME/.bashrc or $HOME/.zshrc or /etc/bashrc or /etc/bash.bashrc according to your unix operating system and terminal manager that you use:

根据您使用的unix操作系统和终端管理器,在$ HOME / .bashrc或$ HOME / .zshrc或/ etc / bashrc或/etc/bash.bashrc中:

export SECRET_KEY='value_of_the_secret_key_generated_by_get_random_string_function'

you can look something like this:

你可以看起来像这样:

export SECRET_KEY='lmrffsgfhrilklg-za7#57vi!zr)ps8)2anyona25###dl)s-#s=7=vn_'

And in the settings.py you can add this:

在settings.py中,您可以添加:

import os
from django.core.exceptions import ImproperlyConfigured

def get_env_variable(var_name):
    try:
        return os.environ[var_name]
    except KeyError:
        error_msg = "Set the %s environment variable" % var_name
        raise ImproperlyConfigured(error_msg)

SECRET_KEY = get_env_variable('SECRET_KEY')

The function get_env_variable tries to get the variable var_name from the environment, and if it doesn’t find it, it raises an ImproperlyConfigured error. Using it in this way, when you try to run your app and the SECRET_KEY variable is not found, you will be able to see a message indicating why our project fails.

函数get_env_variable尝试从环境中获取变量var_name,如果找不到它,则会引发一个ImproperlyConfigured错误。以这种方式使用它,当您尝试运行应用程序并且找不到SECRET_KEY变量时,您将能够看到一条消息,指示我们的项目失败的原因。

Also you can protect the secret content variables of the project in this way.

您也可以通过这种方式保护项目的秘密内容变量。