系统:Ubuntu 14.04 LTS
搭建python的运行环境:Nginx+Supervisor+Pypy+Virtualenv
软件说明:
Nginx:通过upstream进行负载均衡
Supervisor:管理python进程
Pypy:用Python实现的Python解释器PyPy is a fast, compliant alternative implementation of the Python language (2.7.6 and 3.2.3).
Virtualenv:搭建python虚拟环境
环境搭建:
安装pypy:
Shell
sudo apt-get install pypy
1sudoapt-getinstallpypy
安装virtualenv:
Shell
sudo apt-get install virtualenv
1sudoapt-getinstallvirtualenv
创建pypy+virtualenv虚拟环境:
Shell
#在当前目录下创建PYPYENV
virtualenv -p /usr/bin/pypy PYPYENV
cd PYPYENV
1
2
3#在当前目录下创建PYPYENV
virtualenv-p/usr/bin/pypyPYPYENV
cdPYPYENV
导出原有 python 安装的包列表:
Shell
pip freeze > list.txt
1pipfreeze>list.txt
进入virtualenv(PYPYENV)虚拟环境,同时导入list.txt列表:
Shell
source bin/activate
pip install -r list.txt
1
2sourcebin/activate
pipinstall-rlist.txt
退出virtualenv虚拟环境:
Shell
deactivate
1deactivate
安装 supervisor:
Shell
sudo apt-get install supervisor
1sudoapt-getinstallsupervisor
配置supervisor:
Shell
vim /etc/supervisor/supervisord.conf
1vim/etc/supervisor/supervisord.conf
添加
Shell
[inclue]
files=conf.d/*.conf
1
2[inclue]
files=conf.d/*.conf
Shell
vim /etc/supervisor/conf.d/xxxx.conf
1vim/etc/supervisor/conf.d/xxxx.conf
代码示例:
Shell
[program:blog]
command= runinenv.sh /pathaa/PYPYENV python /pathbb/xxx.py --port=80%(process_num)02d --log_file_prefix=/tmp/xxx-80%(process_num)02d.log
directory=/path
numprocs=4
process_name=%(program_name)s-80%(process_num)02d
autostart=true
autorestart=true
startsecs=3
stdout_logfile=/tmp/xxx.log
stderr_logfile=/tmp/xxxerror.log
1
2
3
4
5
6
7
8
9
10[program:blog]
command=runinenv.sh/pathaa/PYPYENVpython/pathbb/xxx.py--port=80%(process_num)02d--log_file_prefix=/tmp/xxx-80%(process_num)02d.log
directory=/path
numprocs=4
process_name=%(program_name)s-80%(process_num)02d
autostart=true
autorestart=true
startsecs=3
stdout_logfile=/tmp/xxx.log
stderr_logfile=/tmp/xxxerror.log
runinenv.sh文件代码示例:
Shell
#!/bin/bash
VENV=$1
if [ -z $VENV ]; then
echo "usage:runinenv [virtualenv_path] CMDS"
exit 1
fi
source ${VENV}/bin/activate
shift 1
echo "Executing $@ in ${VENV}"
exec "$@"
deactivate
1
2
3
4
5
6
7
8
9
10
11#!/bin/bash
VENV=$1
if[-z$VENV];then
echo"usage:runinenv [virtualenv_path] CMDS"
exit1
fi
source${VENV}/bin/activate
shift1
echo"Executing $@ in ${VENV}"
exec"$@"
deactivate
supervisor管理
启动:
Shell
sudo supervisord
1sudosupervisord
管理:
Shell
sudo supervisorctl
supervisord > reload
supervisord > status
supervisord > start
supervisord > stop
1
2
3
4
5
6sudosupervisorctl
supervisord>reload
supervisord>status
supervisord>start
supervisord>stop
安装Nginx:
Shell
sudo apt-get install nginx sudo /etc/init.d/nginx start
1sudoapt-getinstallnginxsudo/etc/init.d/nginxstart
浏览器访问localhost即可看到Welcome to Nginx。
修改nginx配置:
Shell
vim /etc/nginx/sites-available/default
1vim/etc/nginx/sites-available/default
Shell
#在http中添加
upstream xxxx{
ip_hash;
server localhost:8001;
server localhost:8002;
server localhost:8003;
server localhost:8004;
……
}
#在server中修改:
location / {
proxy_pass http://xxxx
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14#在http中添加
upstreamxxxx{
ip_hash;
serverlocalhost:8001;
serverlocalhost:8002;
serverlocalhost:8003;
serverlocalhost:8004;
……
}
#在server中修改:
location/{
proxy_passhttp://xxxx
}
nginx压力测试:
Shell
sudo apt-get install apache2-utils
# 并发数1000,总请求数10000
ab -c 1000 -n 10000 http://localhost/
1
2
3
4sudoapt-getinstallapache2-utils
# 并发数1000,总请求数10000
ab-c1000-n10000http://localhost/
参考资料:
1 、使用 ab 进行测试 nginx 时,结果发现 Failed requests 很大,查看日志( /var/log/nginx/error.log ),发现错误是: socket() failed (24: Too many open files),参考这里;
2、Nginx中的一些优化