<!-- Resin 3.1 配置文件. -->
<resin xmlns="http://caucho.com/ns/resin" xmlns:resin="http://caucho.com/ns/resin/core">
<!-- 加载resin/lib下的所有.jar文件-->
<class-loader>
<tree-loader path="${resin.home}/lib"/>
<tree-loader path="${resin.root}/lib"/>
</class-loader>
<!-- 管理配置 -->
<management path="${resin.root}/admin">
</management>
<!-- JDK日志接口的配置. -->
<log name="" path="stdout:" timestamp="[%H:%M:%S.%s] "/>
<!-- 日志信息的级别:'info' 生产环境 'fine' 开发环境 'finer' 调试环境 -->
<logger name="com.caucho" level="info"/>
<logger name="com.caucho.java" level="config"/>
<logger name="com.caucho.loader" level="config"/>
<!-- 环境上下文的检测时间,对于生产站点, 这个要设置长一点,例如600秒,10分钟 -->
<dependency-check-interval>2s</dependency-check-interval>
<!-- 发送邮件通知的SMTP服务器 -->
<system-property mail.smtp.host="127.0.0.1"/>
<system-property mail.smtp.port="25"/>
<!-- 你可以把编译器改成 "javac", "eclipse" 或者 "internal". -->
<javac compiler="internal" args="-source 1.5"/>
<!-- Security providers. -->
<security-provider>
com.sun.net.ssl.internal.ssl.Provider
</security-provider>
<!-- 去掉注释,如果你使用resin提供的xml应用 -->
<system-property javax.xml.parsers.DocumentBuilderFactory
="com.caucho.xml.parsers.XmlDocumentBuilderFactory"/>
<system-property javax.xml.parsers.SAXParserFactory
="com.caucho.xml.parsers.XmlSAXParserFactory"/>
<cluster id="app-tier">
<!-- 设置集群上下文的根, 相对于server.root -->
<root-directory>.</root-directory>
<server-default>
<!-- HTTP服务的端口-->
<http address="*" port="8080"/>
<!-- SSL端口配置: -->
<http address="*" port="8443">
<openssl>
<certificate-file>keys/gryffindor.crt</certificate-file>
<certificate-key-file>keys/gryffindor.key</certificate-key-file>
<password>test123</password>
</openssl>
</http>
<!-- JVM参数设置 -->
<jvm-arg>-Xmx256m</jvm-arg>
<jvm-arg>-Xss1m</jvm-arg>
<jvm-arg>-Xdebug</jvm-arg>
<jvm-arg>-Dcom.sun.management.jmxremote</jvm-arg>
<!-- Uncomment to enable admin heap dumps 去掉这个如果你想管理内存堆的倾倒 -->
<jvm-arg>-agentlib:resin</jvm-arg>
<watchdog-arg>-Dcom.sun.management.jmxremote</watchdog-arg>
<!-- 强制resin强制重起时的最小空闲内存 -->
<memory-free-min>1M</memory-free-min>
<!-- 最大线程数量. -->
<thread-max>256</thread-max>
<!-- 套接字等待时间 -->
<socket-timeout>65s</socket-timeout>
<!-- 配置 keepalive -->
<keepalive-max>128</keepalive-max>
<keepalive-timeout>15s</keepalive-timeout>
<!-- 如果使用的是UNIX,这里是启动的帐号和用户组. -->
<user-name>resin</user-name>
<group-name>resin</group-name>
</server-default>
<!-- 定义群集服务器 -->
<server id="" address="127.0.0.1" port="6800"/>
<!-- Configures the persistent store for single-server or clustered
配置独立服务器或者群集的持久化存储,专业版的功能 -->
<resin:if test="${resin.isProfessional()}">
<persistent-store type="cluster">
<init path="session"/>
</persistent-store>
</resin:if>
<!-- 为了安全, 你可以为SSL会话(SSL sessions)定义一个不同的cookie. -->
<ssl-session-cookie>SSL_JSESSIONID</ssl-session-cookie>
<!-- 缓存启用 (专业版的功能) -->
<resin:if test="${isResinProfessional}">
<cache path="cache" memory-size="64M">
<!-- Vary header rewriting for IE -->
<rewrite-vary-as-private/>
</cache>
</resin:if>
<!-- 启用周期性的服务器状态检查和死锁检查,所有的服务器可以添加 <url> 来检查。 -->
<resin:if test="${isResinProfessional}">
<ping>
<!-- <url>http://localhost:8080/test-ping.jsp</url> -->
</ping>
</resin:if>
<!-- 包含web应用的默认行为 -->
<resin:import path="${resin.home}/conf/app-default.xml"/>
<!-- 每一个web应用的默认参数 -->
<web-app-default>
<!-- 扩展库的公共jar文件,扩展是安全的即使没有类装载器知道的jars,
装载的类将为每个应用分别装载,也就是这些类都是不同的 -->
<class-loader>
<tree-loader path="${server.root}/ext-webapp"/>
</class-loader>
<!-- 设置缓存页、静态也的延时值 -->
<cache-mapping url-pattern="/" expires="5s"/>
<cache-mapping url-pattern="*.gif" expires="60s"/>
<cache-mapping url-pattern="*.jpg" expires="60s"/>
<cache-mapping url-pattern="*.png" expires="60s"/>
<!-- 启用EL表达式 -->
<allow-servlet-el/>
<!-- 安全原因, 默认禁用了会话的URLs -->
<session-config>
<enable-url-rewriting>false</enable-url-rewriting>
</session-config>
<!-- 安全原因, 在cookies中设置HttpOnly标志 -->
<cookie-http-only/>
<!--一些JSP包有不正确的 .tld文件。可以把validate-taglib-schema设置成false,可能继续正常工作
Some JSP packages have incorrect .tld files. It's possible to set validate-taglib-schema to false to work around these packages. -->
<jsp>
<validate-taglib-schema>true</validate-taglib-schema>
<fast-jstl>true</fast-jstl>
<fast-jsf>true</fast-jsf>
</jsp>
</web-app-default>
<!-- 简单的数据池配置 -->
The JDBC name is java:comp/env/jdbc/test
<database>
<jndi-name>jdbc/mysql</jndi-name>
<driver type="org.gjt.mm.mysql.Driver">
<url>jdbc:mysql://localhost:3306/test</url>
<user></user>
<password></password>
</driver>
<prepared-statement-cache-size>8</prepared-statement-cache-size>
<max-connections>20</max-connections>
<max-idle-time>30s</max-idle-time>
</database>
<!-- 定义所有虚拟主机的默认配置 -->
<host-default>
<!-- 如果和别的web服务器整合,这个可以被去掉,因为web服务器也可以记录这些信息。 -->
<access-log path="logs/access.log" format='%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i"' rollover-period="1W"/>
<!-- war 文件的布置目录 -->
<web-app-deploy path="webapps"/>
<!-- ear文件的布置目录 -->
<ear-deploy path="deploy">
<ear-default>
<ejb-server>
<config-directory>WEB-INF</config-directory>
<data-source>jdbc/test</data-source>
</ejb-server>
</ear-default>
</ear-deploy>
<!-- rar文件的布置目录 -->
<resource-deploy path="deploy"/>
</host-default>
<!-- 虚拟主机的布置目录 -->
<host-deploy path="hosts">
<host-default>
<resin:import path="host.xml" optional="true"/>
</host-default>
</host-deploy>
<!-- 默认的虚拟主机配置 -->
<host id="" root-directory=".">
<!-- 配置默认的应用 webapp's ROOT -->
<web-app id="/" root-directory="webapps/ROOT"/>
<web-app id="/resin-admin" root-directory="${resin.home}/php/admin">
<!-- 管理应用程序 /resin-admin password is the md5 hash of the password。md5码的密码。
localhost is true to limit access to the localhost。localhost设置成true,这样只有localhost才能访问 -->
<prologue>
<resin:set var="resin_admin_user" value=""/>
<resin:set var="resin_admin_password" value=""/>
<resin:set var="resin_admin_external" value="false"/>
</prologue>
</web-app>
</host>
</cluster>
<!-- Configuration for the web-tier/load-balancer -->
<resin:if test="${resin.isProfessional()}">
<cluster id="web-tier">
<server-default>
<!-- The http port -->
<http address="*" port="9080"/>
</server-default>
<server id="web-a" address="127.0.0.1" port="6700"/>
<cache path="cache" memory-size="64M"/>
<host id="">
<web-app id="/">
<rewrite-dispatch>
<load-balance regexp="" cluster="app-tier"/>
</rewrite-dispatch>
</web-app>
</host>
</cluster>
</resin:if>
</resin>
补充:
1.<server-default>
<http address="*" port="80"/>
<http server-id="xxx.xxx.xxx.xx1" address="xxx.xxx.xxx.xx1" port="443">
<jsse-ssl>
<key-store-type>jks</key-store-type>
<key-store-file>conf/server1.keystore</key-store-file>
<password>密码</password>
</jsse-ssl>
</http>
<http server-id="xxx.xxx.xxx.xx2" address="xxx.xxx.xxx.xx2" port="443">
<jsse-ssl>
<key-store-type>jks</key-store-type>
<key-store-file>conf/server2.keystore</key-store-file>
<password>密码</password>
</jsse-ssl>
</http>
</server-default>
以上实现,同一台物理服务器,监听不同ip的443端口实现不同域名不同证书的分配
2.Session的配置
<session-config>
<session-max>4096</session-max>
<session-timeout>30</session-timeout>
<enable-cookies>true</enable-cookies>
<enable-url-rewriting>true</enable-url-rewriting>
<file-store>WEB-INF/sessions</file-store>
</session-config>
session-max :最大 session数量
session-timeout :session过期时间,以分钟为单位。
是否允许cookie :指session是否采用cookies。如果采用cookies,浏览器必须支持session才能使用,发布时建议改成false。enable-url-rewriting和enable-cookies一般配合使用。如果enable-cookies是false,
enable-url-rewriting应该设成true比较合适。
file-store :该配置指示服务器是否把session作为文件存放在服务器上。如果把该项注释掉,则在你的web-app目录下的WEB-Inf/sessions目录不保存序列化后的session对象。Session还有jdbc-store配置,对应着把session通过jdbc永久保存在数据库中。其实也就是会话变量的序列化后的保存和重新载入的物理实现。
分享到:
相关推荐
resin3.1安装包&中文说明配置文件。 官方说明如下: Resin’s Java EE certified architecture is cloud-enabling. You can choose to have Resin power your SaaS application or utilize it as the backbone of ...
Resin 3.1 配置文件说明 Resin 3.1 配置文件是 Resin 服务器的核心组件之一,它负责管理和配置 Resin 服务器的各种设置和参数。本文将详细介绍 Resin 3.1 配置文件的结构和配置项。 一、配置文件结构 Resin 3.1 ...
### Resin 3.1 配置文件解析与说明 #### 一、概述 Resin 是一款高性能且功能丰富的 Java 应用服务器和 Web 服务器,由 Caucho Technology 开发。Resin 3.1 版本是该系列中的一个稳定版本,广泛应用于企业级应用...
Resin 3.1配置文件详解 Resin是一款高性能、轻量级的Java应用服务器,尤其在处理Web应用方面表现出色。它以其优秀的性能、稳定性以及易于管理的特性,深受开发人员的喜爱。本文将深入探讨Resin 3.1版本中的配置文件...
至于压缩包中的"resin"文件,可能是Resin服务器的安装包或相关配置文件,这通常用于在本地环境中安装或配置Resin服务器,以便与Eclipse插件配合使用。 总结来说,Resin的Eclipse插件是Java开发者在使用Eclipse开发...
- 在`resin-3.2.1/conf/resin.xml`文件中配置部署信息: ```xml ${resin.root}/deploy/jpetstore"/> ``` 其中`id="/jpetstore"`表示该应用的访问路径,`root-directory="${resin.root}/deploy/jpetstore"`表示...
确保项目根目录下存在 `resin.conf` 文件,并且配置文件中的 jar 文件路径正确无误。例如,在 `resin.conf` 文件中,可以指定加载外部库的路径: ```xml ${resin.root}/ext-webapp-lib"/> ``` 以上...
2. **Resin日志配置文件**: - Resin的日志配置通常位于`conf/resin.xml`文件中,可以通过修改此文件来定制日志行为。 - 配置文件中的`<logger>`标签用于定义日志记录器,可以设置多个日志记录器以满足不同模块或...
在配置文件中,`<resin>`标签是根元素,包含了所有Resin服务器的配置信息。`<class-loader>`部分用于定义类加载器,确保服务器能够找到并加载运行所需的所有.jar文件。`<tree-loader>`子标签指定了两个路径,`${...
6. **配置管理**:直接在Eclipse中编辑和管理Resin服务器的配置文件,如`resin.xml`,减少手动修改配置文件的繁琐工作。 7. **集群管理**:对于使用Resin集群的开发者,插件提供了对多个Resin节点的统一管理和部署...
10. **配置管理**:通过XML配置文件,用户可以灵活配置Resin的各项设置,如服务器端口、线程池大小、缓存策略等。 综上所述,Resin 3.1.5作为一个成熟的Java应用服务器,集成了多种功能,适用于开发和运行各种Java ...
- 配置Resin:安装完成后,需要配置`resin.conf`文件,设定服务器端口、应用部署路径等关键参数。 - 部署应用:将打包好的WAR文件放到Resin的应用部署目录下,服务器会自动解压并部署应用。 - 日志管理:Resin...
这种配置的益处在于,Nginx可以处理静态文件请求,减轻Resin的压力;同时,作为反向代理,Nginx可以提供负载均衡和安全保护,如防止DDoS攻击。 总之,搭建CentOS 6.3 + Resin 3.1.12 + Nginx 1.x的发布环境需要对...
- **配置文件**:Resin使用`resin.conf`作为主要的配置文件,通过这个文件可以设置服务器的行为,如端口、连接器、会话持久化等。 - **Web应用部署**:`.war`文件可以直接放在`webapps`目录下,Resin会自动解压并...
- 根据需要调整配置文件,例如 `httpd.sh` 或 `resin.conf`。 #### 四、Httpd.sh 参数配置详解 **1. 参数详解** - `-Xms`: 设置初始堆内存大小。 - `-Xmx`: 设置最大堆内存大小。 - `-XX:MaxNewSize`: 设置新生代...
- **配置文件**:`resin.xml` 是 Resin 的核心配置文件,用于定义服务器和应用程序的行为。 - **示例配置**:展示如何配置 `resin.xml` 来满足特定的需求。 ##### 5.2 命令行部署 - **默认主机部署**:在默认主机...
4. **配置与管理**:Resin服务器通过XML配置文件进行配置,这使得设置和调整服务器参数变得直观。它还提供了Web管理界面,方便远程监控和管理服务器状态、应用部署、日志查看等。 5. **性能优化**:Resin以其高效的...
本节详细说明了如何在 Resin 集群中配置分布式会话,确保会话数据的一致性和可用性。 - **集群会话配置**:提供了具体的配置示例和最佳实践。 ##### 1.11 性能调优 (Performance Tuning) 这部分重点介绍了 Resin ...
9. **配置灵活性**:Resin的配置可以通过XML文件进行,提供了丰富的选项来定制服务器的行为。这使得开发者可以根据特定项目需求进行精细化配置。 10. **社区支持**:Caucho Technology提供了活跃的社区论坛和文档,...