我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Django1.8 CentOS7 N

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Django1.8 CentOS7 N

The deployment set for a long time, at first i met the environment problem which is my code based on Python3.4. Python2.7 and python3.4 conflict. So, i try to use virtualenv to make it success, and i have to do many works again.

Django

I used it in august 2015, later i found Flask with Gunicorn is better way to finish a small project.

Install django

This is needless to say, it is ok to use pip.
Recommend a source image: https://pypi.doubanio.com/simple/

Start django

start project

django-admin.py startproject xxc

start app

python manage.py startapp xxc_student

if you want to user pymysql, you should change __init.py__ as follow:

import pymysql

pymysql.install_as_MySQLdb()

after all, synchronous database

python3 manage.py syncdb

uwsgi

Install uwsgi

These were some error you may encounter:

  • uwsgi: option '--http' is ambiguous

The problems associated with the environment of python,it is recommented to use pip install uwsgi to install uwsgi

  • ImportError: No module named 'wsgi'

Wsgi configuration file with the manage.py in the same directory,there are many kinds of format wsgi configuration file,such as.wsgi and .py, you can use both of them in the same way.

Start uwsgi

start command, this command is a test way to run the Django.

uwsgi --http-socket :8000 --chdir /opt/AnJiBei_Python_Project/anjibei/ --module django_wsgi

You can make uwsgi become a deamon with log.

uwsgi --http-socket :8000 --chdir /opt/AnJiBei_Python_Project/anjibei/ --module django_wsgi --daemonize /opt/AnJiBei_Python_Project/anjibei/log/uwsgi.log

Also important is that django_wsgi is the configuration file which should be in the same directory with manage.py.Don't write an absolute path, otherwise, may lead to the import error.

These were some error you may encounter:

  • Static resource access failure

Run python manage.py collectstatic,and static files will be copied to the STATIC_ROOT specified static folder.

This command feels a bit strange, my static files distribution under different startapp, now, all of them... hum... be synchronized.The location of the static files were affected by the position where you execute the uwsgi command. So, you can find the static files were in the same directory with manage.py. Here is a picture of original, but... you know...

Stop uwsgi

Just we specify th 8000 port, so we can use it to find the process no.

netstat -apn | grep 8000

Or, you can user the process name directly.

netstat -apn | grep uwsgi

Later, use kill to stop the uwsgi deamon.

kill -9 3532

Git pull

You have to restart the uwsgi to make you code to take effect.

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Django1.8 CentOS7 N

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Django1.8 CentOS7 N

The deployment set for a long time, at first i met the environment problem which is my code based on Python3.4. Python2.
2023-01-31

django1.8使用表单上传文件的实现方法

Python下有许多款不同的 Web 框架。Django是重量级选手中最有代表性的一位。许多成功的网站和APP都基于Django。Django是一个开放源代码的Web应用框架,由Python写成。 在django中我们可以采用Form类来处
2022-06-04

Celery ValueError: n

最近因项目需要,在使用任务队列Celery的时候,出现如题错误,最终在github上里找到解决办法,记录一下。运行环境环境:win10 + python3 + redis 2.10.6 + celery 4.2.1 win10上运行cele
2023-01-30

Centos7下怎么实现用户登录失败N次后锁定用户禁止登陆

这篇文章主要介绍了Centos7下怎么实现用户登录失败N次后锁定用户禁止登陆的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇Centos7下怎么实现用户登录失败N次后锁定用户禁止登陆文章都会有所收获,下面我们一起
2023-06-30

c++中n的n次方怎么写

在 c++ 中计算 n 的 n 次方:使用 pow() 函数,位于 头文件中。pow(base, exponent),其中 base 是要计算其幂的数,exponent 是幂次。例如,pow(3, 4) 计算 3 的 4 次方,结果为 8
c++中n的n次方怎么写
2024-05-08

c++中int a(n)和int a[n]的区别

int a(n)声明一个不可变的整型变量,而int a[n]声明一个可修改元素的整型数组,用于存储和处理数据序列或集合。int a(n) 和 int a[n] 在 C++ 中的区别在 C++ 中,int a(n) 和 int a[n] 是
c++中int a(n)和int a[n]的区别
2024-05-14

python中时间的加n和减n运算

好多朋友都遇到过python推算时间的问题,有些把时间转换成整数做推算,这样遇到特殊的时间和日期就会出现错误,在python中时间的推算很简单,主要就是用到datetime.timedelta方法,进行时间的加n减n运算:>>>import
2023-01-31

Python如何生成n行n列的矩阵

要生成n行n列的矩阵,可以使用嵌套的列表推导式。下面是一个示例代码:```pythonn = 3 # 矩阵的大小,这里为3x3# 生成n行n列的零矩阵matrix = [[0 for j in range(n)] for i in ran
2023-09-26

fabric+supervisor+n

以ubuntu为例:#!/bin/bash#初始化用户sudo useradd -rm -s /bin/bash demosudo adduser demo sudosudo passwd demosudo apt-get install
2023-01-31

c++中n的n次方怎么表示

c++ 中有两种表示 n 的 n 次方的方法:使用 pow 函数,如 pow(5, 3) 表示 5 的 3 次方,结果为 125。使用运算符重载,如 power(5) ^ 3 表示 5 的 3 次方,同样结果为 125。C++中n的n次方表
c++中n的n次方怎么表示
2024-05-08

Windows Server TP3之N

其实之前在TP2的时候,写过一篇如何去制作NanoServer,最近TP3发布出来,我们就简单看一下跟TP2的一些改进。下载TP3之后,我挂载ISO,发现NanoServer文件夹内置两个脚本了。convert-windowsp_w_pic
2023-01-31

Xshell连接centOS7并与CentOS7联网

就像引出“3+4”重构那样,我们也可以直接将配置前与配置后的对比状态列举出来,这样更省事。 0、对于如下配置的宿主机(此处即为Windows主机)1、编辑→虚拟网络编辑器 配置完毕后的状态如下:注:(1)其
2022-08-16

python 求n次幂

k,b=5,2print(pow(k,b),pow(10**10,0.1))k,b=5,2print(pow(k,b),pow(10**10,0.1))25 10.000000000000002
2023-01-31

MySQL中varchar(n) 中n最大取值为多少

目录前置知识varchar(n) 中 n 最大取值为多少?单字段的情况多字段的情况总结前置知识要回答这个问题,首先我们得先知道 mysql 存储一条记录的格式长什么样子。以 Compact 行格式作为例子,它长这样:可以看到,一条完整
MySQL中varchar(n) 中n最大取值为多少
2024-08-31

MySQL如何查找第N高或第N低的值

要查找第N高或第N低的值,可以使用MySQL的子查询和ORDER BY语句。要查找第N高的值,可以使用以下查询语句:SELECT DISTINCT column_name FROM table_name ORDER BY colum
MySQL如何查找第N高或第N低的值
2024-03-06

python3报错No module n

问题:在python使用过程中,发现报错No module named _ssl,但是系统已经安装opensll,于是开始了解决问题之旅原因:python3支持openssl版本最低为1.0.2,而系统比较老,自带的openssl版本为1.
2023-01-31

python 去掉\n和\t

record = data[temp].strip("\n").split(" ")
2023-01-31

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录