- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我已经在我的电脑上成功创建了我的 Django (1.9) 站点。现在正在尝试将其移动到 Web 服务器(CentOS 7)。坐了一整天,在网上搜索后,我找到了很多关于如何做到这一点的指南。但是在所有这一切之中,可能将其中一些混淆在一起,因为似乎没有使 Django 在网络服务器上运行的“单向”。
经过长时间的努力,我实际上已经设法让 Apache (2.4.6) 运行起来,但我现在看到一个内部 500 错误。我花了一段时间,但我找到了日志文件。对于我的其他读者,他们在/etc/httpd/logs/error_log 中。
[Wed Feb 24 18:00:05.475116 2016] [mpm_prefork:notice] [pid 4641] AH00163: Apache/2.4.6 (CentOS) mod_wsgi/3.4 Python/2.7.5 configured -- resuming normal operations
[Wed Feb 24 18:00:05.475162 2016] [core:notice] [pid 4641] AH00094: Command line: '/usr/sbin/httpd -D FOREGROUND'
[Wed Feb 24 18:00:12.867329 2016] [:error] [pid 4642] [client x:54699] mod_wsgi (pid=4642): Target WSGI script '/var/www/sites/mysite.com/mysite/wsgi.py' cannot be loaded as Python module.
[Wed Feb 24 18:00:12.867484 2016] [:error] [pid 4642] [client x:54699] mod_wsgi (pid=4642): Exception occurred processing WSGI script '/var/www/sites/mysite.com/mysite/wsgi.py'.
[Wed Feb 24 18:00:12.867570 2016] [:error] [pid 4642] [client x:54699] Traceback (most recent call last):
[Wed Feb 24 18:00:12.867664 2016] [:error] [pid 4642] [client x:54699] File "/var/www/sites/mysite.com/mysite/wsgi.py", line 12, in <module>
[Wed Feb 24 18:00:12.868020 2016] [:error] [pid 4642] [client x:54699] from django.core.wsgi import get_wsgi_application
[Wed Feb 24 18:00:12.868109 2016] [:error] [pid 4642] [client x:54699] ImportError: No module named django.core.wsgi
我假设我需要对 Django 代码的某种引用,尽管我不知道为什么、如何或在哪里放置它。
出于任何 future 读者的兴趣,也为了看看我做了什么,我将尝试追溯我所做的步骤,以便能够看到我可能遗漏或做错了什么。
注意:我没有使用 virtualenv 来运行我的 Django 项目。
完成上述操作后,我使用SVN 客户端将我在服务器上的代码 check out 到文件夹/var/www/sites/mysite.com 中。文件夹结构如下所示。 (注意仍在使用 sqllite,还没有迁移到 PostgreSQL,这是下一步,一旦我看到我的网站在线)
(旁注,我花了很多时间弄清楚 Django 代码放在哪里,因为我到处看,它的位置都不一样。我最终决定直接把它放在/var/www 中,因为它是站点代码,这里似乎需要它。欢迎任何评论。)
+---var
| \---www
| \---sites
| \---static
| \---mysite.com
| +---db.sqllite3
| +---manage.py
| \---.svn
| \---mysite
| +---settings.py
| +---urls.py
| +---wsgi.py
| +---...
| \---mysiteapp
| +---urls.py
| +---admin.py
| +---...
我使用“sudo python3.4 manage.py collectstatic”将静态文件移动到/var/www/sites/static/文件夹。因为我不希望它位于我的 .svn 文件所在的文件夹中。我可以忽略该文件夹,但现在是这样。
Apache 安装非常标准,我更改了一些东西,但就我而言,应该不会有影响,所以我只是在这里显示我在“/”中使用的 conf 文件etc/httpd/conf.d”文件夹。 (请注意,我已将项目名称替换为 mysite)
WSGIPythonPath /var/www/sites/mysite.com
ServerName sub.server.com
<VirtualHost *:80>
Alias /static/ /var/www/sites/static/
<Directory /var/www/sites/static/>
Options -Indexes
Require all granted
</Directory>
WSGIScriptAlias / /var/www/sites/mysite.com/mysite/wsgi.py
<Directory /var/www/sites/mysite.com/mysite>
<Files wsgi.py>
Require all granted
</Files>
</Directory>
</VirtualHost>
我的 wsgi.py 文件是 Django 在创建初始项目时创建的标准文件。这在我的计算机上运行时与 Djangos 自己的 Web 服务器一起工作,看不出我是否必须在此处更改某些内容才能使其在使用 Apache 时工作?
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings")
application = get_wsgi_application()
为了感兴趣,我还包括了 settings.py 文件,看看这里有什么。
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/1.9/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = <removed>
# SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True
ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'mysiteapp.apps.mysiteappConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
]
MIDDLEWARE_CLASSES = [
'django.middleware.security.SecurityMiddleware',
'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',
]
ROOT_URLCONF = 'mysite.urls'
TEMPLATES = [
{
'BACKEND': 'django.template.backends.django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'django.template.context_processors.debug',
'django.template.context_processors.request',
'django.contrib.auth.context_processors.auth',
'django.contrib.messages.context_processors.messages',
],
},
},
]
WSGI_APPLICATION = 'mysite.wsgi.application'
# Database
# https://docs.djangoproject.com/en/1.9/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/1.9/ref/settings/#auth-password-validators
AUTH_PASSWORD_VALIDATORS = [
{
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator',
},
{
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator',
},
]
# Internationalization
# https://docs.djangoproject.com/en/1.9/topics/i18n/
LANGUAGE_CODE = 'en-us'
TIME_ZONE = 'CET'
USE_I18N = True
USE_L10N = True
USE_TZ = True
# Logging
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'filters': {
'require_debug_false': {
'()': 'django.utils.log.RequireDebugFalse'
}
},
'handlers': {
'mail_admins': {
'level': 'ERROR',
'filters': ['require_debug_false'],
'class': 'django.utils.log.AdminEmailHandler'
},
'logfile': {
'class': 'logging.handlers.WatchedFileHandler',
'filename': '/var/log/django/error.log'
},
},
'loggers': {
'django.request': {
'handlers': ['mail_admins'],
'level': 'ERROR',
'propagate': True,
},
'django': {
'handlers': ['logfile'],
'level': 'ERROR',
'propagate': False,
},
}
}
# Static files (CSS, JavaScript, Images)
# https://docs.djangoproject.com/en/1.9/howto/static-files/
STATIC_ROOT = '/var/www/sites/static/'
STATIC_URL = '/static/'
我希望有人能指出我正确的方向。我很感激我能得到的任何帮助,或对设置的评论。经过一整天的尝试并在网上搜索后,我真的很想念关于如何让 Django 在服务器端运行的好指南。指南太多了,但您需要将许多不同的指南组合一次才能获得全貌,因为每个指南都做出了如此多的假设,您或多或少必须具备先验知识才能使用它们。
当您组合这些指南时,每个指南的做法都略有不同,这让您的大脑加类加点地拼凑起来。 :)
最佳答案
(代表 OP 发布)。
有时候你只需要远离事物,从不同的角度来看待它。这只是一个缺少的引用。在 conf 中,我还需要添加对 Django 库的引用。我向 WSGIPythonPath 添加了“/usr/lib64/python3.4/site-packages:”,因此它现在看起来如下所示。然后一切都奏效了。我希望这至少现在可以帮助其他人。
WSGIPythonPath /usr/lib64/python3.4/site-packages:/var/www/sites/mysite
如果有人无意中看到这篇文章,并且想对我提出的任何其他问题发表评论,请随意。我仍然想知道,如果我的方法可以改进,因为这只是一个临时服务器,我必须为生产重新做一遍。还不如学习做得更好。
关于python - 在 CentOS 7/Apache 2.4/Python 3.4 上运行 Django 1.9,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35609750/
我正在处理一组标记为 160 个组的 173k 点。我想通过合并最接近的(到 9 或 10 个组)来减少组/集群的数量。我搜索过 sklearn 或类似的库,但没有成功。 我猜它只是通过 knn 聚类
我有一个扁平数字列表,这些数字逻辑上以 3 为一组,其中每个三元组是 (number, __ignored, flag[0 or 1]),例如: [7,56,1, 8,0,0, 2,0,0, 6,1,
我正在使用 pipenv 来管理我的包。我想编写一个 python 脚本来调用另一个使用不同虚拟环境(VE)的 python 脚本。 如何运行使用 VE1 的 python 脚本 1 并调用另一个 p
假设我有一个文件 script.py 位于 path = "foo/bar/script.py"。我正在寻找一种在 Python 中通过函数 execute_script() 从我的主要 Python
这听起来像是谜语或笑话,但实际上我还没有找到这个问题的答案。 问题到底是什么? 我想运行 2 个脚本。在第一个脚本中,我调用另一个脚本,但我希望它们继续并行,而不是在两个单独的线程中。主要是我不希望第
我有一个带有 python 2.5.5 的软件。我想发送一个命令,该命令将在 python 2.7.5 中启动一个脚本,然后继续执行该脚本。 我试过用 #!python2.7.5 和http://re
我在 python 命令行(使用 python 2.7)中,并尝试运行 Python 脚本。我的操作系统是 Windows 7。我已将我的目录设置为包含我所有脚本的文件夹,使用: os.chdir("
剧透:部分解决(见最后)。 以下是使用 Python 嵌入的代码示例: #include int main(int argc, char** argv) { Py_SetPythonHome
假设我有以下列表,对应于及时的股票价格: prices = [1, 3, 7, 10, 9, 8, 5, 3, 6, 8, 12, 9, 6, 10, 13, 8, 4, 11] 我想确定以下总体上最
所以我试图在选择某个单选按钮时更改此框架的背景。 我的框架位于一个类中,并且单选按钮的功能位于该类之外。 (这样我就可以在所有其他框架上调用它们。) 问题是每当我选择单选按钮时都会出现以下错误: co
我正在尝试将字符串与 python 中的正则表达式进行比较,如下所示, #!/usr/bin/env python3 import re str1 = "Expecting property name
考虑以下原型(prototype) Boost.Python 模块,该模块从单独的 C++ 头文件中引入类“D”。 /* file: a/b.cpp */ BOOST_PYTHON_MODULE(c)
如何编写一个程序来“识别函数调用的行号?” python 检查模块提供了定位行号的选项,但是, def di(): return inspect.currentframe().f_back.f_l
我已经使用 macports 安装了 Python 2.7,并且由于我的 $PATH 变量,这就是我输入 $ python 时得到的变量。然而,virtualenv 默认使用 Python 2.6,除
我只想问如何加快 python 上的 re.search 速度。 我有一个很长的字符串行,长度为 176861(即带有一些符号的字母数字字符),我使用此函数测试了该行以进行研究: def getExe
list1= [u'%app%%General%%Council%', u'%people%', u'%people%%Regional%%Council%%Mandate%', u'%ppp%%Ge
这个问题在这里已经有了答案: Is it Pythonic to use list comprehensions for just side effects? (7 个答案) 关闭 4 个月前。 告
我想用 Python 将两个列表组合成一个列表,方法如下: a = [1,1,1,2,2,2,3,3,3,3] b= ["Sun", "is", "bright", "June","and" ,"Ju
我正在运行带有最新 Boost 发行版 (1.55.0) 的 Mac OS X 10.8.4 (Darwin 12.4.0)。我正在按照说明 here构建包含在我的发行版中的教程 Boost-Pyth
学习 Python,我正在尝试制作一个没有任何第 3 方库的网络抓取工具,这样过程对我来说并没有简化,而且我知道我在做什么。我浏览了一些在线资源,但所有这些都让我对某些事情感到困惑。 html 看起来
我是一名优秀的程序员,十分优秀!