cp /home/mpsp/software/script/nginx.conf /home/mpsp/nginx/conf/nginx.conf
修改nginx.conf中的upstream www.test.com 中的IP和PORT为本次部署的Resin的IP和PORT
cd /home/mpsp/nginx/conf
vi nginx.conf
修改后结果为:
upstream www.test.com{
#weigth参数表示权值,权值越高被分配到的几率
server 10.10.41.22:8081 max_fails=3 fail_timeout=30s;
server 10.10.41.22:8082 max_fails=3 fail_timeout=30s;
#保证按照seesion分发(如果没有安装jvm 需要将下面部分内容全部注释掉)
# jvm_route $cookie_JSESSIONID|sessionid;
#jvm_route $cookie_JSESSIONID|jsessionid;
}
验证
启动:运行/home/mpsp/nginx/script下面的nginxd脚本
停止:运行/home/mpsp/nginx/script下面的nginxs脚本
ps –ef|grep nginx查看nginx进程
当nginx进程全部退出后运行/usr/mpsp/run下面的nginxd 执行命令: ./nginxd
正常执行启动脚本后,nginx下的内容:
client_body_temp
conf
fastcgi_temp
html
logs
on
proxy_temp
sbin
scgi_temp
script
uwsgi_temp
测试配置文件:运行/home/mpsp/nginx/script的nginxtestcfg脚本测试配置文件 ~/nginx/conf/nginx.conf的正确性,如果屏幕显示以下两行信息,说明配置文件正确:
nginx: the configuration file /home/mpsp/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /home/mpsp/nginx/conf/nginx.conf test is successful