码迷,mamicode.com
首页 > 其他好文 > 详细

nginx A/B 灰色发布

时间:2018-05-04 11:50:54      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:NGINX 灰色发布 nginx

1、安装组件
yum install -y openssl openssl-devel gcc gcc-c++ authoconf automake pcre-devel

2、下载程序ABTestingGateway.git

git clone https://github.com/CNSRE/ABTestingGateway.git
cd /opt/ABTestingGateway/utils && mkdir logs

3、安装openresty
wget https://openresty.org/download/openresty-1.9.7.5.tar.gz

./configure
gmake && gmake install
4、安装redis
wget http://download.redis.io/releases/redis-4.0.6.tar.gz
tar -zxvf redis-4.0.6.tar.gz
cd /path/to/redis-4.0.6
./make MALLOC=libc
ln -s /opt/redis-4.0.6/src/redis-server /usr/local/bin/redis-server
5、启动redis
cd /opt/ABTestingGateway/utils
redis-server conf/redis.conf
/usr/local/openresty/nginx/sbin/nginx -p pwd -c conf/stable.conf
/usr/local/openresty/nginx/sbin/nginx -p pwd -c conf/beta1.conf
/usr/local/openresty/nginx/sbin/nginx -p pwd -c conf/beta2.conf
/usr/local/openresty/nginx/sbin/nginx -p pwd -c conf/beta3.conf
/usr/local/openresty/nginx/sbin/nginx -p pwd -c conf/beta4.conf

ps -ef| grep nginx

/usr/local/openresty/nginx/sbin/nginx -p pwd -c conf/nginx.conf

nginx A/B 灰色发布

标签:NGINX 灰色发布 nginx

原文地址:http://blog.51cto.com/guoshaoliang789/2112600

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!