24025
查看Django系列环境配置的源代码
Django系列环境配置
0
←
Django系列环境配置
跳转至:
导航
、
搜索
因为以下原因,你没有权限编辑本页:
你被禁止执行你刚才请求的操作。
您可以查看并复制此页面的源代码:
==安装基本运行环境== ===安装Django=== 官网:https://www.djangoproject.com Django当前最新版本是 1.11.4,1.11系列也是 Django支持 python2.7的最后一个系列版本,安装也很简单: 进入 python的安装目录,如默认的 C:\\Python27,再进入 Scripts目录,这里应该可以找到 pip.exe,cmd运行: C:\Python27\Scripts>pip install Django==1.11.4 确认安装是否成功: <pre> C:\Python27\Scripts>python Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32 Type "help", "copyright", "credits" or "license" for more information. >>> import django >>> print django.get_version() 1.11.4 </pre> ===安装验证码模块captcha=== $ pip install django-simple-captcha ===安装apache2=== $ sudo apt install apache2 ===安装Mysql=== $ sudo apt-get install mysql-server mysql-client 设置mysql密码:https://blog.csdn.net/qq_38737992/article/details/81090373 $ sudo apt-get install libmysqlclient-dev 安装python接口 $ pip install MySQL-python ==配置Django项目== ===下载项目代码并配置生产环境变量=== 1 将Djanog代码checkout至 /var/www/xxx/下 2 配置生产环境变量:xxx/settings.py ===数据库初始化=== 登陆mysql手动创建数据库: create database py_xxx DEFAULT CHARACTER SET utf8; 对数据库初始化: <pre> python manage.py makemigrations python manage.py migrate </pre> ===初始化语言=== 安装语言处理工具: $ apt-get install gettext 编译语言: <pre> python manage.py makemessages -l en python manage.py compilemessages </pre> ==配置生产环境== 这里我们直接配置 default-ssl站点,使用https安全连接。 ===加载ssl模块=== a2enmod ssl ===安装加载 wsgi模块=== 参考:https://modwsgi.readthedocs.io/en/develop/user-guides/quick-installation-guide.html 简单说来,就是要下载源代码:https://github.com/GrahamDumpleton/mod_wsgi/releases wget https://github.com/GrahamDumpleton/mod_wsgi/archive/4.7.1.zip 然后编译: ./configure make make install 有可能提示出错:The 'apxs' command appears not to be installed or is not executable. 那是因为apache2-dev未安装,执行: apt-get install apache2-dev 编译完成提示如下内容则表示安装成功 <pre> Libraries have been installed in: /usr/lib/apache2/modules </pre> 最后与apache2集成(生成load文件),并使能: apt-get install libapache2-mod-wsgi a2enmod wsgi ===启用站点=== a2ensite default-ssl ===修改站点配置文件 sites-enabled/default-ssl.conf ===
返回
Django系列环境配置
。
导航菜单
个人工具
   
个人维基
注册
登录
名字空间
页面
变换
查看
阅读
查看源代码
统计
查看历史
操作
搜索
导航
首页
Ubuntu
Android
C&CPP
Java
Python
大杂烩
最近更改
工具箱
所有页面
文件列表
特殊页面