手记,以免下次配置再入坑。有些细节未做详细描述,如果有问题,可以评论或私信我。
初次尝试搭python服务器,强撸python3,花样作死。过程中出现各种错误,不停google,搜到的时间大部分在2012年-2014年。让我不禁怀疑,真的没人用py搭服务器嘛?怎么比ruby还少。。。
相关技术点:django, gunicorn, virtualenv, circus, nginx
陆续花了一个月时间,先是折腾flask,完了折腾django,再到部署。感觉身体被掏空。说好的人生苦短,要用python呢。相比之下PHP部署简单多了(主要是傻瓜式的一键安装,很多vps都提供PHP预装环境)。
至少打开了10倍于上图的tabs。简直丧心病狂。
下面记录在部署django中的一些细节。以免以后再google来回折腾。
服务器: 阿里云 ubuntu
创建新用户
在root下创建新的user
|
|
exit 尝试用新用户登陆。登陆后会发现你所在的根目录为/home/stay4it
python环境
python3.5.2还是python2.7.6?自行安装
要是当初不执着于python3,也就不会出那么多幺蛾子了。
virtualenv (可选)
为每个python app创建一个独立开发环境。(如果确定只用python3|python2,大可不必安装)
|
|
编辑 .bashrc
vi .bashrc
|
|
source .bashrc
创建一个开发环境
|
|
创建出来的虚拟环境在 /home/stay4it/.virtualenvs/stay4it
git 导入项目
安装git
|
|
测试run server
|
|
stay4it@:~$ workon stay4it
pip3 install gunicorn
cd project/
vi gunicorn.conf
##指定workers的数目,使用多少个进程来处理请求
workers = 3
##绑定本地端口
bind = ‘127.0.0.1:8081’
gunicorn testdeploy.wsgi -c gunicorn.conf
[circus]
check_delay = 5
endpoint = tcp://127.0.0.1:5555
pubsub_endpoint = tcp://127.0.0.1:5556
statsd = true
[watcher:test]
working_dir = /home/stay4it/test/
cmd = gunicorn
args = testdeploy.wsgi -c gunicorn.conf
uid = stay4it
numprocesses = 3
send_hup = true
autostart = true
stdout_stream.class = FileStream
stdout_stream.filename = /home/projects/log/test-deploy.log
stdout_stream.max_bytes = 10485760
stdout_stream.backup_count = 4
使用virtualenv独立开发环境
copy_env = True
virtualenv = /home/stay4it/.virtualenvs/stay4it/
server {
listen 80;
server_name test.stay4it.com;
root /home/stay4it/test/;
error_log /home/stay4it/logs/access.log;
location / {
proxy_pass http://localhost:8081;
}
}
-- coding:utf-8 --
from fabric.api import *
服务器登录用户名:
env.user = ‘stay4it’
服务器地址,可以有多个,依次部署:
env.hosts = [‘ip’, ]
env.passwords = {
‘root@[hostname]’: ‘’,
}
不用密码也可以用ssh登录
env.key_filename = ‘~/.ssh/id_rsa’
_REMOTE_BASE_DIR = ‘/home/stay4it/test’
def deploy():
with cd(_REMOTE_BASE_DIR), prefix(“source /home/stay4it/.virtualenvs/stay4it/bin/activate”):
run(‘git pull’)
run(‘pip3 install -r requirements.txt’)
run(‘python3 manage.py migrate’)
# run('gunicorn testdeploy.wsgi -c gunicorn.conf')
run('sudo service circus restart')
# run('sudo service nginx restart')
|
fab deploy
```
后续
可以再添加ssh rsa,这样就不用总是用密码登录。
看起来蛮简单的,真正配起来问题多多。身边如果有个python大神就好了(求介绍)。自己折腾太耗时了。
期间很多技术选型都被误导了,很多python2的库在python3上都木有。很多部署都有个人偏好。比如不要django选flask,不要circus选supervisor。同事还给我推荐了ansible,capistranorb。累积的学习成本超高。也不知道当时到底哪个筋搭错了,非用python搭服务器。PHP才是最好的语言啊。
难者不会,会者不难。所有的轻车熟路都是刮蹭来的~
声明:本文为Stay原创,未经允许请勿转载 有心课堂(stay4it.com) 传递给你的不仅仅是技术~