阿里云 Centos7 部署 Django 项目
Posted feizisy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了阿里云 Centos7 部署 Django 项目相关的知识,希望对你有一定的参考价值。
- 前期准备
- 阿里云服务器
- mysql数据库
- 已经本地运行成功的项目
- 阿里云服务器的环境配置
- Git #代码管理
- Gitlab #代码托管,要求服务器内存不低于2G,我选择放弃
- Mysql #连接数据库
- Python3 #python项目的运行环境,默认为python2
- Django #项目环境
- Uwsgi #项目运行后访问的相关的配置文件
- Virtualenv #创建虚拟python环境
- nginx #配置项目运行转发的相关配置
- 环境配置的详细操作
- 更新软件包并安装可能用到的依赖
- yum update -y
- yum -y groupinstall "Development tools"
- yum install openssl-devel bzip2-devel expat-devel gdbm-devel readline-devel sqlite-devel
- 安装mysql
- 下载安装包
- 安装
- yum install mysql80-community-release-el7-3.noarch.rpm
- yum -y install mysql-community-server
- 启动mysql并查看运行状态
- systemctl start mysqld.service
- systemctl status mysqld.service
- 安装python3
- 下载
- cd /usr/local/
- wget https://www.python.org/ftp/python/3.6.6/Python-3.6.6.tgz
- tar -zxvf Python-3.6.6.tgz
- 编译
- cd Python-3.6.6
- ./configure --prefix=/usr/local/python
- 安装
- make
- make install
- 建立软连接
- ln -s /usr/local/python3/bin/python3.6 /usr/bin/python3
- ln -s /usr/local/python3/bin/pip3.6 /usr/bin/pip3
- 安装virtualenv
- 安装
- pip3 install virtualenv
- 建立软连接
- ln -s /usr/local/python3/bin/virtualenv /usr/bin/virtualenv
- 创建文件目录
- mkdir -p /data/env
- mkdir -p /data/wwwroot
- 创建环境
- cd /data/env
- virtualenv --python=/usr/bin/python3 hellofuture
- 启动环境
- cd hellofuture/bin
- source activate
- 安装第三方包
- pip3 install django
- pip3 install uwsgi
- ln -s /usr/local/python3/bin/uwsgi /usr/bin/uwsgi
- 拉代码
- cd /data/wwwroot
- git clone https://gitlab.com/feizisy/hellofuture.git/
- 配置uwsgi
- cd /data/wwwroot/hellofuture
- touch hellofuture.xml
- vim hellofuture.xml
- <uwsgi>
- <socket>127.0.0.1:8001</socket><!-- 内部端口,自定义 -->
- <chdir>/data/wwwroot/hellofuture/</chdir><!-- 项目路径 -->
- <module>hellofuture.wsgi</module>
- <processes>4</processes> <!-- 进程数 -->
- <daemonize>uwsgi.log</daemonize><!-- 日志文件 -->
- </uwsgi>
- 安装/配置nginx
- cd home
- wget http://nginx.org/download/nginx-1.13.7.tar.gz
- tar -zxvf nginx-1.13.7.tar.gz
- cd nginx-1.13.7
- ./configure
- make
- make install
- cd /usr/local/nginx/conf
- cp nginx.conf nginx.conf.bak
- vim nginx.conf
- 配置nginx.conf
- cd ../sbin
- ./nginx -t
- ./nginx
- uwsgi配置
- cd /data/wwwroot/hellofuture/
- uwsgi -x hellofuture.xml
- 重启nginx
- cd /usr/local/nginx/
- ./nginx -s reload
- 运行项目
- cd /data/wwwroot/hellofuture/
- python3 manage.py runserver 0.0.0.0:8001
- 本地访问
- 公网IP:8001
以上是关于阿里云 Centos7 部署 Django 项目的主要内容,如果未能解决你的问题,请参考以下文章