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

Resin4 自定义端口

时间:2017-04-25 13:17:09      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:集群配置   log   文件   自动重启   class   add   health   停止   code   

1. Resin4配置文件发生了较大变化,分为:

  • app-default.xml  web应用配置
  • cluster-default.xml  集群配置
  • health.xml -- 非pro版不支持  
  • resin.xml
  • resin.properties  会被修改的变量

2. Resin4启动默认有三个端口:

  • watch dog 用的6600 (配置文件里没有)
  • Http端口:8080 (对应app.http)
  • Server监听端口: 127.0.0.1:6800 (对应app_servers )

说明:单个Resin不管同时配置几个应用,每次启动Resin之后,只会启动一个WatchDog监听,kill掉WatchDog后,所有的实例都会停止,WatchDog运行中,kill掉某个实例后,该实例会自动重启。

经验证:只要WatchDog在运行中,修改server端口,不需要重启resin。

 

3. 自定义端口(resin.properties)

  resin.properties中修改server端口  

app_servers      : 127.0.0.1:6801

  resin.properties中修改http端口   

app.http : 8081

  resin.xml中修改WatchDog

<server-multi id-prefix="app-" address-list="${app_servers}" port="6800">
    <watchdog-port>6601</watchdog-port>
</server-multi>

Resin4 自定义端口

标签:集群配置   log   文件   自动重启   class   add   health   停止   code   

原文地址:http://www.cnblogs.com/LiuB/p/6761080.html

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