青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

隨筆 - 298  文章 - 377  trackbacks - 0
<2025年11月>
2627282930311
2345678
9101112131415
16171819202122
23242526272829
30123456

常用鏈接

留言簿(34)

隨筆分類

隨筆檔案

文章檔案

相冊

收藏夾

搜索

  •  

最新評論

閱讀排行榜

評論排行榜

<!--
   - Resin 4.0 configuration file.
  
-->
<resin xmlns="http://caucho.com/ns/resin"
       xmlns:resin
="urn:java:com.caucho.resin">

  
<!-- property-based Resin configuration -->
  
<resin:properties path="${__DIR__}/resin.properties" optional="true"/>
  
<resin:properties path="cloud:/resin.properties"
                    optional
="true" recover="true"/>


  
<resin:if test="${properties_import_url}">
     
<resin:properties path="${properties_import_url}"
                    optional
="true" recover="true"/>
  
</resin:if>


  
<!-- Logging configuration for the JDK logging API -->
  
<log-handler name="" level="all" path="stdout:"
               timestamp
="[%y-%m-%d %H:%M:%S.%s]"
               format
=" {${thread}} ${log.message}"/>
               
  
<!-- 
     - Alternative pseudo-TTCC log format
     -
     - <log-handler name="" level="all" path="stdout:"
     -           timestamp="%y-%m-%d %H:%M:%S.%s"
     -           format=" [${thread}] ${log.level} ${log.shortName} - ${log.message}"/>
    
-->
   
  
<!--
     - level='info' for production
     - 'fine' or 'finer' for development and troubleshooting
    
-->
  
<logger name="" level="${log_level?:'info'}"/>

  
<logger name="com.caucho.java" level="config"/>
  
<logger name="com.caucho.loader" level="config"/>

  
<!--
     - Default configuration applied to all clusters, including
     - HTTP, HTTPS, and /resin-admin configuration.
    
-->
  
<resin:import path="${__DIR__}/cluster-default.xml"/>
  
  
<!--
     - health configuration
    
-->
  
<resin:import path="${__DIR__}/health.xml"/>

  
  
<!--
     - Remote management requires at least one enabled admin user.
    
-->
  
<resin:AdminAuthenticator>
    
<user name="${admin_user}" password="${admin_password}"/>
    
    
<resin:import path="${__DIR__}/admin-users.xml" optional="true"/>
    
<resin:import path="cloud:/admin-users.xml" optional="true" recover="true"/>
  
</resin:AdminAuthenticator>

  
<!--
     - For clustered systems, create a password in as cluster_system_key
    
-->
  
<cluster-system-key>${cluster_system_key}</cluster-system-key>

  
<!--
     - For production sites, change dependency-check-interval to something
     - like 600s, so it only checks for updates every 10 minutes.
    
-->
  
<dependency-check-interval>${dependency_check_interval?:'2s'}</dependency-check-interval>

  
<!-- For resin.properties dynamic cluster joining -->
  
<home-cluster>${home_cluster}</home-cluster>
  
<!-- <home-server>${home_server}</home-server> -->



  
<!--
     - Configures the main application cluster.  Load-balancing configurations
     - will also have a web cluster.
    
-->
  
<cluster id="app">
    
<!-- define the servers in the cluster -->
    
<server-multi id-prefix="app-" address-list="${app_servers}" port="6800">
        
<http id="" port="8080"/>
    
</server-multi>


    
<host-default>
      
<!-- creates the webapps directory for .war expansion -->
      
<web-app-deploy path="webapps"
                      expand-preserve-fileset
="WEB-INF/work/**"
                      multiversion-routing
="${webapp_multiversion_routing}"/>
    
</host-default>

    
<!-- auto virtual host deployment in hosts/foo.example.com/webapps -->
    
<host-deploy path="hosts"/>

    
<!-- the default host, matching any host name -->
    
<host id="" root-directory=".">
      
<!--
         - webapps can be overridden/extended in the resin.xml
        
-->
      
<web-app id="/" root-directory="webapps/ROOT"/>
      
      
<resin:if test="${resin_doc}">
        
<web-app id="/resin-doc" root-directory="${resin.root}/doc/resin-doc"/>
      
</resin:if>

      
<web-app id="/sp" root-directory="F:/develop/Java/provision/web"/>
    
</host>
  
</cluster>

  
<cluster id="web">
    
<!-- define the servers in the cluster -->
    
<server-multi id-prefix="web-" address-list="${web_servers}" port="6810"/>

    
<host id="" root-directory="web">
      
<web-app id="">
        
<resin:LoadBalance regexp="" cluster="app"/>        
      
</web-app>
    
</host>
  
</cluster>

  
<cluster id="memcached" xmlns:memcache="urn:java:com.caucho.memcache">
    
<!-- define the servers in the cluster -->
    
<server-multi id-prefix="memcached-" address-list="${memcached_servers}" port="6820">
      
<!-- listen for the memcache protocol -->
      
<listen port="${memcached_port?:11211}"
              keepalive-timeout
="600s" socket-timeout="600s">
        
<memcache:MemcachedProtocol/>
      
</listen>
    
</server-multi>
  
</cluster>

   
<cluster id="app-1">
     
<!-- sets the content root for the cluster, relative to server.root -->
     
<root-directory>.</root-directory>
 
    
<resin:import path="${resin.home}/conf/app-default.xml"/>

    
<!-- configures a deployment directory for virtual hosts -->
     
<host-deploy path="hosts">
       
<host-default>
          
<access-log path="logs/app1-access.log"
             format
='%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i"'
             rollover-period
="1D"/>
         
<resin:import path="host.xml" optional="true"/>
       
</host-default>
     
</host-deploy>
 
    
<server id="app1" port="6801">
       
<http id="" port="9010"/>
     
</server>
     
<host id="" root-directory=".">
     
<log name="" level="info" path="log/stdout_app1.log" timestamp="[%H:%M:%S.%s] "
      archive-format
="stdout_app1.log.%Y-%m-%d.gz"
      rollover-period
="1D"/>
 
      
<web-app id="/" root-directory="F:/develop/Java/provision/web"/>
     
</host>
   
</cluster>



   
<cluster id="app-2">
     
<!-- sets the content root for the cluster, relative to server.root -->
     
<root-directory>.</root-directory>
 
    
<resin:import path="${resin.home}/conf/app-default.xml"/>
 
    
<!-- configures a deployment directory for virtual hosts -->
     
<host-deploy path="hosts">
       
<host-default>
          
<access-log path="logs/app2-access.log"
             format
='%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i"'
             rollover-period
="1D"/>
         
<resin:import path="host.xml" optional="true"/>
       
</host-default>
     
</host-deploy>
 
    
<server id="app2" port="6802">
       
<http id="" port="9020"/>
     
</server>
     
<host id="" root-directory=".">
     
<log name="" level="info" path="log/stdout_app2.log" timestamp="[%H:%M:%S.%s] "
      archive-format
="stdout_app2.log.%Y-%m-%d.gz"
      rollover-period
="1D"/>
 
      
<web-app id="/" root-directory="F:/develop/Java/provision/web"/>
     
</host>
   
</cluster>

  
<!--resin:set var="resin_admin_external" value="true"/--> 
</resin>


CMD:
resin cluster app gui
resin -server app1 start   or   resin -server app1 gui
resin -server app2 start   or   resin -server app2 gui

F:\develop\Java\resin\resin-pro-4.0.28>resin -cluster app start
Resin
/4.0.28 launching watchdog at 127.0.0.1:6600
Resin
/4.0.28 started with watchdog at 127.0.0.1:6600

F:\develop\Java\resin\resin
-pro-4.0.28>


posted on 2012-06-21 12:09 聶文龍 閱讀(1239) 評論(1)  編輯 收藏 引用

FeedBack:
# re: Resin 4 2012-06-21 13:07 聶文龍
# resin.properties - configuration variable values
#
# See resin.xml, cluster-default.xml, and health.xml for full configuration.
# Any variable defined by ${...} can be set as a property in this file.
#
# Individual server overrides can be specified by prepending the server.id.
# For example, increasing the log level for an individual server:
#
# log_level : info
# app-0.log_level : finest
#
# Like Resin XML configuration, modification of this file will trigger a restart.
#

# General log level (modify resin.xml for more granular log level adjustments)
# log_level : finer

# Enable verbose browser error reporting
dev_mode : true

# Enable /resin-doc Resin documentation
resin_doc : true

# List Triad server ip-addresses:hmux-port for each tier, space separated
# App tier Triad servers must be listed to enable web-tier to app-tier load-balancing

# web-tier Triad servers: web-0 web-1 web-2
# web_servers :

# app-tier Triad servers: app-0 app-1 app-2
app_servers : 127.0.0.1:6800
app-1 : 127.0.0.1:6801
app-2 : 127.0.0.1:6802

# Configures Resin for a memcached server tier
# memcached-tier Triad servers: memcached-0 memcached-1 memcached-2
# memcached_servers :
# memcached_port : 11211

# Allow elastic nodes to join the cluster (enable for cloud mode)
# elastic_cloud_enable : true

# The cluster that elastic nodes should join - each will contact a Triad server
# Use a separate resin.properties file for each cluster
home_cluster : app
app1 : app-1
app2 : app-2

# Set HTTP and HTTPS bind address
# http_address : *

# Set HTTP and HTTPS ports.
# Use overrides for individual server control, for example: app-0.http : 8081
#http : 8080
app-0.http : 44405
app-1.http : 44406
app-2.http : 44407
# https : 8443

# For security, Resin can switch to a non-root user after binding to port 80
setuid_user :
setuid_group :

# Arg passed directly to the JVM
# jvm_args : -Xmx2048m -XX:MaxPermSize=256m

# Local URLs for the watchdog to check to ensure the server is up, space separated
# http_ping_urls : http://127.0.0.1/test.jsp

# Throttle the number of active threads for a port
port_thread_max : 256
accept_thread_max : 32
accept_thread_min : 4

# Enable JNI TCP speed optimizations
tcp_cork : true
sendfile : true

# OpenSSL certificate configuration
# Keys are typically stored in the resin configuration directory.
# openssl_file : keys/test.crt
# openssl_key : keys/test.key
# openssl_password : changeme

# JSSE certificate configuration
# Keys are typically stored in the resin configuration directory.
# jsse_keystore_type : jks
# jsse_keystore_file : /etc/resin/keys/server.keystore
# jsse_keystore_password : changeme

# In absence of a signed certificate, Resin will fallback to using a
# self-signed development certificate if HTTPS is enabled

# Enable the proxy-cache - for caching static content in memory
proxy_cache_enable: false

# Sets the proxy cache memory size
# proxy_cache_size : 256m

# Enable clustered persistent sessions (for failover)
session_store : true

# Web-apps named with numeric suffixes, e.g. foo-10.0.war and can be browsed as
# /foo. When a new version of the web-app is deployed, Resin continues to route
# active session requests to the previous web-app version while new sessions
# go to the new version, so users will not be aware of the application upgrade.
# webapp_multiversion_routing : true

# Set the email address to receive weekly and restart PDF reports
# email : admin@example.com

# Set a global password to prevent foreign Resin instances from connecting.
# Must be identical between web, app, and cache clusters.
# cluster_system_key : changeme

# Enable command-line remote admin (required for remote deploy)
# remote_cli_enable : true

# Enable /resin-admin web administration console
web_admin_enable : true

# Permit access to /resin-admin from non-local network ip-addresses
# web_admin_external : true

# Require HTTPS to access /resin-admin
# web_admin_ssl : true

# Enable Resin REST Admin
# rest_admin_enable : true

# Require SSL for REST Admin
# rest_admin_ssl : true

# Access to /resin-admin and remote CLI is password restricted.
# Use "resinctl generate-password" and copy/paste here to set the admin
admin_user : admin
admin_password : {SSHA}xxxxxxxx

# Enable reading EC2 user data as resin properties
# properties_import_url : http://169.254.169.254/latest/user-data

#admin_external : true
#admin_secure : true  回復  更多評論
  

只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
      <noscript id="pjuwb"></noscript>
            <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
              <dd id="pjuwb"></dd>
              <abbr id="pjuwb"></abbr>
              亚洲欧美欧美一区二区三区| 国产精品午夜久久| 一本色道久久88综合亚洲精品ⅰ| 美国三级日本三级久久99| 久久亚洲精品网站| 欧美v日韩v国产v| 亚洲国产另类 国产精品国产免费| 免费一级欧美片在线播放| 久久综合一区二区三区| 欧美国产日韩视频| 亚洲第一页自拍| 99国产麻豆精品| 午夜在线精品偷拍| 欧美成人午夜| 一区二区免费在线观看| 亚洲一区国产精品| 久久久久免费观看| 欧美美女bbbb| 国产永久精品大片wwwapp| 亚洲精品免费在线播放| 午夜在线视频观看日韩17c| 六月婷婷一区| 99天天综合性| 久久免费少妇高潮久久精品99| 欧美久久一区| 极品日韩久久| 亚洲欧美在线网| 亚洲高清视频的网址| 亚洲欧美日韩精品久久奇米色影视| 久久久91精品国产| 国产精品午夜av在线| 夜夜嗨av一区二区三区网站四季av| 久久都是精品| 一本到高清视频免费精品| 久久久亚洲国产美女国产盗摄| 欧美另类女人| 亚洲精品社区| 欧美v日韩v国产v| 久久成人免费电影| 国产美女在线精品免费观看| 一区二区精品| 亚洲人成绝费网站色www| 久久夜色精品国产| 狠狠色噜噜狠狠色综合久| 午夜精品福利一区二区蜜股av| 91久久久久久| 女生裸体视频一区二区三区| 红桃av永久久久| 久久国产欧美| 亚洲免费网址| 国产精品区二区三区日本| 亚洲最新在线视频| 91久久国产综合久久| 老牛国产精品一区的观看方式| 国产中文一区二区三区| 久久久久国产一区二区| 午夜国产精品视频免费体验区| 国产精品高精视频免费| 亚洲一区二区精品视频| 亚洲美女中文字幕| 欧美日韩精品在线播放| 99精品视频免费在线观看| 亚洲国产日韩欧美一区二区三区| 久久资源av| 亚洲精品久久久久久久久久久久久| 久久综合精品国产一区二区三区| 久久成人这里只有精品| 尤物九九久久国产精品的分类| 久久婷婷国产综合精品青草| 欧美在线资源| 亚洲国产日韩欧美在线图片| 亚洲高清av| 欧美精品粉嫩高潮一区二区 | 欧美亚洲日本国产| 99精品福利视频| 国产精品免费在线| 欧美在线黄色| 久久夜色精品亚洲噜噜国产mv| 亚洲电影欧美电影有声小说| 欧美成人免费小视频| 欧美精品免费播放| 性感少妇一区| 久久嫩草精品久久久精品| 亚洲国产精品女人久久久| 日韩视频永久免费观看| 国产亚洲精品久久久久久| 欧美sm重口味系列视频在线观看| 欧美精品激情在线| 欧美伊人精品成人久久综合97 | 久久青草欧美一区二区三区| 在线精品视频在线观看高清 | 久久综合导航| 一本到高清视频免费精品| 亚洲欧美成人一区二区在线电影| 一区在线电影| 一区二区三区 在线观看视频| 国产伪娘ts一区| 欧美国产日韩一二三区| 国产精品户外野外| 欧美国产欧美综合| 国产精品网红福利| 亚洲国产美女久久久久| 国产嫩草影院久久久久| 亚洲第一毛片| 国产午夜亚洲精品不卡| 亚洲剧情一区二区| 在线看一区二区| 亚洲欧美日韩国产另类专区| 亚洲伦伦在线| 久久夜色精品一区| 久久久久久久久久久久久女国产乱| 免费不卡亚洲欧美| 久久国产手机看片| 国产精品国产一区二区 | 夜夜精品视频| 在线观看欧美成人| 性欧美精品高清| 亚洲一区中文字幕在线观看| 欧美成年人视频| 美玉足脚交一区二区三区图片| 国产精品日日做人人爱| 亚洲精品韩国| 亚洲精品国产精品乱码不99 | 久久午夜激情| 国产精品久久久久久亚洲调教 | 一本色道88久久加勒比精品| 久久久精彩视频| 久久精品中文字幕一区| 欧美一级电影久久| 中文在线一区| 欧美大片免费久久精品三p | 亚洲午夜伦理| 中文在线资源观看网站视频免费不卡| 久久综合福利| 欧美国产视频一区二区| 精品91免费| 久久亚洲综合色| 欧美成人网在线| 亚洲精品1区| 欧美国产精品久久| 91久久国产综合久久| 亚洲三级视频| 欧美激情日韩| 亚洲人成亚洲人成在线观看图片| 最新日韩av| 欧美久久综合| 99re66热这里只有精品3直播| 一本久道久久综合婷婷鲸鱼| 欧美日韩一区二区在线播放| 亚洲综合精品四区| 久久久噜噜噜久噜久久 | 国产精品自拍在线| 在线中文字幕不卡| 午夜精品一区二区三区在线| 国产视频不卡| 老司机一区二区三区| 亚洲国产精品视频一区| 亚洲最黄网站| 国产欧美精品一区二区色综合| 性欧美1819性猛交| 欧美激情一二区| 一本色道久久综合亚洲精品小说 | 欧美一区亚洲二区| 欧美暴力喷水在线| 夜夜爽夜夜爽精品视频| 国产精品视屏| 久久网站热最新地址| 欧美一区二区啪啪| 亚洲国产一区二区三区高清| 久久亚洲综合色一区二区三区| 美女图片一区二区| 亚洲精品女av网站| 国产精品久久久久久久久| 欧美一区二区三区精品| 欧美电影在线播放| 亚洲伊人网站| 18成人免费观看视频| 欧美好吊妞视频| 欧美一级日韩一级| 亚洲精品久久久蜜桃| 久久不射中文字幕| 日韩午夜精品| 国产一区二区三区在线免费观看 | 在线观看国产日韩| 欧美激情精品久久久久久变态| 亚洲网站在线观看| 免费视频一区二区三区在线观看| 亚洲最新视频在线| 在线观看国产成人av片| 国产精品普通话对白| 欧美激情免费在线| 久久久噜噜噜久久| 亚洲永久免费精品| 亚洲日本电影在线| 久久一区中文字幕| 欧美一区精品| 午夜精品久久一牛影视| 一区二区三区久久久| 91久久精品美女| 在线观看一区欧美|