<!-- - Resin 3.1 configuration file. --> <resin xmlns="http://caucho.com/ns/resin" xmlns:resin="http://caucho.com/ns/resin/core"> <!-- 添加的所有JAR文件。在/ lib目录 --> <class-loader> <tree-loader path="${resin.home}/ext-lib"/> <tree-loader path="${resin.root}/ext-lib"/> <tree-loader path="${resin.home}/lib"/> <tree-loader path="${resin.root}/lib"/> </class-loader> <!-- - 管理配置 - - 远程管理至少需要一个使管理员. --> <management path="${resin.root}/admin"> <user name="admin" password="password" disable="true"/> <resin:if test="${resin.professional}"> <deploy-service/> <jmx-service/> <log-service/> <xa-log-service/> </resin:if> </management> <!-- - 日志配置JDK日志API. --> <log name="" level="info" path="stdout:" timestamp="[%H:%M:%S.%s] {%{thread}} "/> <!-- - “信息”的生产 - 'fine' or '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="6125"/> <!-- - 设置字符集编码,默认是utf-8 - - <character-encoding>utf-8</character-encoding> --> <!-- - 可以更改编译器 javac --> <javac compiler="internal" args="-source 1.5"/> <!-- 安全服务提供商. - <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"> <!-- 设置根目录 --> <root-directory>.</root-directory> <server-default> <!-- http服务 端口 --> <http address="*" port="6661"/> <!-- - SSL 协议端口配置相关 - - <http address="*" port="6441"> - <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> <!-- - 取消管理员堆转储 - <jvm-arg>-agentlib:resin</jvm-arg> --> <!-- 线程监控看门狗程序 --> <watchdog-jvm-arg>-Dcom.sun.management.jmxremote</watchdog-jvm-arg> <watchdog-port>6600</watchdog-port> <!-- 强制 resin 强制重起时的最小空闲内存 --> <memory-free-min>1M</memory-free-min> <!-- 最大线程数 --> <thread-max>256</thread-max> <!-- 配置socket连接超时时间 --> <socket-timeout>65s</socket-timeout> <!-- 配置 keepalive --> <keepalive-max>128</keepalive-max> <keepalive-timeout>15s</keepalive-timeout> <!-- - resin 作为根在UNIX系统中,为Web服务器的用户指定用户名和组名 - - <user-name>resin</user-name> - <group-name>resin</group-name> --> </server-default> <!-- 集群中的服务器定义 --> <server id="" address="127.0.0.1" port="6800"/> <!-- 在单服务器或群集配置中的持久性存储 --> <resin:if test="${resin.professional}"> <persistent-store type="cluster"> <init path="session"/> </persistent-store> </resin:if> <!-- - 为了安全,使用不同的SSL会话cookie。 - <ssl-session-cookie>SSL_JSESSIONID</ssl-session-cookie> --> <!-- 开启缓存 (available in Resin Professional) --> <resin:if test="${resin.professional}"> <cache path="cache" memory-size="64M"> <!-- Vary header rewriting for IE --> <rewrite-vary-as-private/> </cache> </resin:if> <!-- 定期检查死锁的服务器状态 所有服务加入<url> 都要被检查 --> <resin:if test="${resin.professional}"> <ping> <!-- <url>http://localhost:8080/test-ping.jsp</url> --> </ping> </resin:if> <!-- 违约适用于每个Web应用程序。 --> <web-app-default> <prologue> <!-- - Extension library for common jar files. The ext is safe - even for non-classloader aware jars. The loaded classes - will be loaded separately for each web-app, i.e. the class - itself will be distinct. --> <class-loader> <tree-loader path="${resin.root}/ext-webapp-lib"/> </class-loader> <!-- Servlet和过滤器初始化参数可以使用EL表达式 --> <allow-servlet-el/> </prologue> <!-- 对于可缓存的页面设置缓存超时值,例如静态页面--> <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"/> <!-- 为了安全,默认情况下禁用会话的URL --> <session-config> <enable-url-rewriting>false</enable-url-rewriting> </session-config> <!-- 为了安全,在cookie设置httponly旗 - <cookie-http-only/> --> <!-- 一些JSP包有不正确的 .tld files. 设置验证标签库模式假绕过这些包是可能的. --> <jsp> <validate-taglib-schema>true</validate-taglib-schema> <fast-jstl>true</fast-jstl> </jsp> </web-app-default> <!-- 指向引入默认的Web应用程序 配置文件 --> <resin:import path="${resin.home}/conf/app-default.xml"/> <!-- - Sample database pool configuration - - 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服务器,如Apache, 这可以说是因为Web服务器将日志信息. --> <access-log path="logs/access.log" format='%h %l %u %t "%r" %s %b "%{Referer}i" "%{User-Agent}i"' rollover-period="1W"/> <!-- 创建的webapps目录 --> <web-app-deploy path="webapps"/> <!-- 创建部署目录 --> <ear-deploy path="deploy"> <ear-default> <ejb-server> <config-directory>WEB-INF</config-directory> </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="."> <!-- 配置一个明确的根Web应用程序相匹配的webapp的根 --> <web-app id="/" root-directory="webapps/ROOT"/> <web-app id="/resin-admin" root-directory="${resin.home}/php/admin"> <!-- - Administration application /resin-admin --> <prologue> <resin:set var="resin_admin_external" value="false"/> <resin:set var="resin_admin_insecure" value="true"/> </prologue> </web-app> </host> </cluster> <!-- 配置Web层/负载平衡器 --> <resin:if test="${resin.professional}"> <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> <cluster id="wpa"> <server id="wpa" address="127.0.0.1" port="6803"> </server> <host id="wpa.17173.com" root-directory="/home/songchen/WebPageAnalytics"> </host> </cluster> </resin>
相关推荐
《Resin3.0.x与Apache2.0.x集成配置详解》 在互联网服务领域,Resin和Apache是两种常见的Web服务器。Resin,作为Java应用服务器,以其高效的性能和对Servlet、JSP的支持而受到青睐;而Apache,作为开源HTTP服务器,...
### Resin 3.0 中 HTTPS 的配置详解 #### 一、引言 随着网络安全意识的提高,HTTPS 已成为网站安全传输的标准协议之一。Resin 是一款高性能且功能丰富的应用服务器,支持 Java 和 HTTP 服务。对于 Resin 3.0 来说...
2. **conf** 目录:包含Resin的主要配置文件,例如`resin.conf`,它是Resin服务器的核心配置文件,用户可以根据需求修改此文件以定制服务器的行为。 3. **lib** 目录:包含Resin运行所需的库文件,包括Java类库和...
- **添加虚拟主机**:修改`C:\Resin3.0\conf\resin.conf`文件,在文件末尾添加相应的虚拟主机配置。 示例配置: ```xml 域名1" root-directory="."> 域名2" root-directory="."> ``` **配置Apache**: - **...
1. **编辑Resin配置文件**:打开`resin.conf`文件。 2. **添加数据库连接池配置**: ```xml <jdbc:driver>com.mysql.jdbc.Driver</jdbc:driver> <jdbc:url>jdbc:mysql://localhost:3306/your_database ...
Resin的配置文件通常位于`conf`目录下,其中`resin.xml`是主要的配置文件,用于设定服务器的全局属性,如端口设置、数据源配置等。 在解压缩后的Resin 4.0.63 文件中,你可能会找到以下几个关键组件和目录: 1. `...
- 在Arguments选项卡中,设置Program Arguments为`-conf "C:\Resin\conf\resin.conf"`,VM Arguments为`-Dresin.home="C:\Resin" -Djava.util.logging.manager=com.caucho.log.LogManagerImpl`(根据实际情况修改...
1. **配置Resin**:编辑`resin.conf`配置文件,根据实际需求设置服务器端口、集群配置、日志级别等参数。 2. **部署应用**:将Web应用的WAR文件放入`webapps`目录下,Resin会自动检测并部署。 3. **启动Resin**:...
配置文件主要位于conf目录下,如resin.conf包含了服务器的主要配置信息。接着,可以通过bin目录下的启动脚本(如resin.sh或resin.bat)启动服务器。将应用部署到Resin3通常有两种方式:一是将WAR文件放入webapps目录...
然后,配置服务器的`conf/resin.conf`文件,设置端口号、应用上下文路径、数据源等关键参数。 启动Resin服务器,通常通过执行`bin/resin.sh`脚本来完成。一旦启动,Resin会监听配置的端口,等待接收HTTP请求。...
本文将详细介绍两种常见的搭建方法:方案一采用JDK1.5搭配Resin3.0手动搭建,方案二则是通过集成开发环境Eclipse或MyEclipse配置Resin服务器。 **方案一:JDK1.5 + Resin3.0 纯手工搭建** 1. **安装JDK1.5**: 首先...
- 配置`conf/resin.conf`文件,根据需求设置端口、应用程序上下文路径、日志级别等参数。 - 启动Resin,可以通过执行`bin\resin.exe`(Windows)或`bin/resin.sh`(Linux/Unix)命令。 - 将Java Web应用的WAR文件...
例如,对于Resin 2.1.x,配置文件可能位于`D:/resin2.1/conf/resin.conf`,而在Resin 3.0.x中,可能通过`ResinConfigServer localhost 6802`来指定配置服务器的位置和端口。 6. **优先级设置**: - `IISPriority`...
1. 修改`conf/resin.conf`:这是Resin的主要配置文件,你可以在这里配置服务器端口、应用上下文路径、数据源、JVM参数等。 2. 部署Web应用:将你的WAR文件或整个应用目录放在`webapps`目录下,Resin会自动检测并部署...
Resin 4.0.24的安装通常包括解压下载的`resin-4.0.24`压缩包,配置服务器配置文件`conf/resin.conf`,设置服务器端口、虚拟主机、应用上下文路径等参数。同时,可以通过`webapps`目录部署Web应用程序。 四、安全...
3. **配置**:进入解压后的目录,编辑`conf/resin.conf`文件,根据你的需求进行基本配置,如端口设置、应用部署路径等。 4. **启动**:通过`./bin/resinctl start`命令启动Resin服务器。 5. **监控**:使用`./bin/...
本篇文章将详述如何在Redhat Linux AS 3.0上配置Apache、MySQL、PHP、Resin(一种Java应用服务器)、SSL(安全套接层)以及GD库和日志分析工具Webalizer。 首先,确保系统中没有预装的服务器程序,如Apache和MySQL...
Tomcat的配置基于conf目录下的两个配置文件:server.xml和web.xml。Tomcat的日志文件存放在Tomcat的安装目录的logs子目录中。 JavaScript验证 在客户端验证中,通常在JavaScript使用正则表达式,以解决字符串...
- 3.0版本开始支持注解配置。 2. **Tomcat目录介绍**: - **bin**:存放Tomcat可执行文件。 - **conf**:存放Tomcat配置文件。 - **lib**:存放Tomcat所需的JAR包。 - **logs**:存放运行日志。 - **temp**:...