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
代码语言:javascript复制django-admin.py startproject xxcstart app
代码语言:javascript复制python manage.py startapp xxc_studentif you want to user pymysql, you should change __init.py__ as follow:
import pymysql
pymysql.install_as_MySQLdb()after all, synchronous database
代码语言:javascript复制python3 manage.py syncdbuwsgi
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 uwsgito 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
.wsgiand.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.
代码语言:javascript复制uwsgi --http-socket :8000 --chdir /opt/AnJiBei_Python_Project/anjibei/ --module django_wsgiYou can make uwsgi become a deamon with log.
代码语言:javascript复制uwsgi --http-socket :8000 --chdir /opt/AnJiBei_Python_Project/anjibei/ --module django_wsgi --daemonize /opt/AnJiBei_Python_Project/anjibei/log/uwsgi.logAlso 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 theSTATIC_ROOTspecified 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.
代码语言:javascript复制netstat -apn | grep 8000Or, you can user the process name directly.
代码语言:javascript复制netstat -apn | grep uwsgiLater, use kill to stop the uwsgi deamon.
kill -9 3532Git pull
You have to restart the uwsgi to make you code to take effect.


