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

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/29455057/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-19 04:34:37  来源:igfitidea点击:

django.core.exceptions.ImproperlyConfigured: The SECRET_KEY setting must not be empty

pythondjango

提问by Ashish Patil

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.clickHymaning.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!

有什么帮助吗?谢谢!

采纳答案by rnevius

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

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

Django will refuse to start if SECRET_KEYis not set.

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

You can read more about this setting in the docs.

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

The SECRET_KEYcan 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壳以下:

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

Copy the SECRET_KEYto your settings file.

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

回答by bgarcial

SECRET_KEYvariable in settings.py should be kept secret

SECRET_KEYsettings.py 中的变量应该保密

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/.bashrcor $HOME/.zshrcor /etc/bashrcor /etc/bash.bashrcaccording to your unix operating system and terminal manager that you use:

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

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.

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