nginx A/B 灰色發佈

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

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章