resin的服务器方法

在resin的使用档里找到的

Resin Installation Quick Start
Quick Start for the Impatient
The Resin standalone web server starts listening to HTTP requests on port 8080 and listens on
port 6802 for any Apache or IIS plugin. Resin can then be used for development or evaluation.
The steps are:
1. Install JDK 1.4 or later. On Unix, set the JAVA_HOME variable or link /usr/java to the
java home. On Windows, check to make sure the JDK installation set JAVA_HOME
correctly.
2. unzip/untar the Resin download
3. On Unix, execute use ./configure; make; make install
4. Start resin-3.0.0/bin/httpd.sh on Unix or resin-3.0.0/httpd.exe on Win32
5. Browse http://localhost:8080
6. Add JSP files like resin-3.0.0/doc/hello.jsp. The URL in your browser will be
http://localhost:8080/hello.jsp
7. Add servlets like resin-3.0.0/doc/WEB-INF/classes/test/HelloServlet.java
8. Add .war files like resin-3.0.0/webapps/hello.war, url in your browser is
http://localhost:8080/hello
9. Create web-apps directly like resin-3.0.0/webapps/hello/index.jsp url in your browser
is http://localhost:8080/hello. Create a file
resin-3.0.0/webapps/hello/WEB-INF/web.xml to configure the 'hello' web application.
10. If needed, modify the Resin configuration in resin-3.0.0/conf/resin.conf
11. .war files will be deployed in resin-3.0.x/webapps.
Until you're ready to deploy the server, those are all the steps needed to get started with Resin.
Preconditions
Resin needs Java before it can run. It needs JDK 1.4 or a later JDK.
Sun's JDK for Windows, Solaris, and Linux can be found at http://java.sun.com. Sun also has
links to some other ports of the JDK.
Linux users can also check out the IBM JDK.

The server listens at port 8080 in the default configuration and can be changed to the HTTP port
80 during deployment.
Windows
1. Install JDK 1.4 or later.
2. Check that the environemnt variable JAVA_HOME is set to the JDK location, i.e
"c:j2sdk1.4.1_01"
3. Unzip resin-3.0.0.zip
4. Define the environment variable RESIN_HOME to the location of Resin, for example
"c:
esin-3.0.0"
5. Execute resin-3.0.0/httpd.exe
6. Browse http://localhost:8080
Unix (including MacOS-X)
1. Install JDK 1.4 or later and link /usr/java to the Java home or define the environment
variable JAVA_HOME.
2. tar -vzxf resin-3.0.0.tar.gz
3. cd resin-3.0.0
4. ./configure
5. make
6. make install
7. Execute resin-3.0.0/bin/httpd.sh
8. Browse http://localhost:8080
For more details, see the Resin standalone configuration page.
Resin with Apache
If you are already using Apache for your web server, you can use Resin with Apache. This
configuration uses Apache to serve html, images, PHP, or Perl, and Resin to serve JSPs and
Servlets.
The Apache configuration uses two pieces: a C program extending Apache (mod_caucho) and
Java program supporting servlets and JSP (srun.) The two pieces communicate with a special
high-speed protocol.

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

这个站点使用 Akismet 来减少垃圾评论。了解你的评论数据如何被处理

相关文章

开始在上面输入您的搜索词,然后按回车进行搜索。按ESC取消。

返回顶部