⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 httpd.xtp

📁 解压在c盘
💻 XTP
字号:
<s1 title="Resin Web Server on Unix or Windows"><summarylist/><p>Resin provides a fast standalone web server.In our benchmarks, it serves static pages faster than Apache!For many sites, the standalone web server is ideal because of itsperformance and because it is easier to configure and maintain thanusing a separate web server.</p><figure src='httpd.gif'/><s2 title='Unix (including Linux and MacOS-X)'><s3 title="Getting Started"><p>The following steps will start Resin for development:</p><ol><li>Install JDK 1.2 or later and link /usr/java to the Java home.</li><li>tar -vzxf resin-2.1.0.tar.gz</li><li>(Optional) Link /usr/local/resin to the resin-2.1.0 directory.</li><li>Execute resin-2.1.0/bin/httpd.sh</li><li>Browse http://localhost:8080</li></ol><example title='Getting Started on Unix'>unix> resin-2.1.x/bin/httpd.shResin 2.1.0 (built Mar 15 21:36:18 PDT 2002)Copyright(c) 1998-2002 Caucho Technology.  All rights reserved.Starting Resin on Fri, 15 Mar 2002 14:49:22 -0700 (PDT)[2002-03-15 14:49:57.177] initializing application http://localhost:8080/examples/login[2002-03-15 14:49:57.178] initializing application http://localhost:8080/jsp-tests[2002-03-15 14:49:58.472] initializing application http://localhost:8080/examples/tags[2002-03-15 14:49:58.473] initializing application http://localhost:8080/examples/templates[2002-03-15 14:49:58.473] initializing application http://localhost:8080/examples/xslhttp listening to *:8080srun listening to localhost:6802</example></s3><s3 name='deploy' title='Deploying on Unix'><p>When deploying, it's a good idea to create a bit of structure tomake Resin and website upgrades easier and more maintainable.</p><ol><li>Create a user to run Resin (e.g. resin or another non-root user)</li><li>Link /usr/local/resin to the current Resin version.  This is $RESIN_HOME.</li><li>Create a deployment root, e.g. /usr/local/web, owned bythe resin user.  This is $SERVER_ROOT.</li><li>Put the modified resin.conf in /usr/local/web/conf/resin.conf</li><li>Put the site documents in /usr/local/web/doc.</li><li>Put any .war files in /usr/local/web/webapps.</li><li>Output logs will appear in /usr/local/web/log.</li><li>Create a startup script and configure the server to start itwhen the machine reboots.</li></ol></s3><s3 title="OpenSSL and JNI"><p>OpenSSL support requires Resin's JNI code to be completed.The <code>./configure; make</code> process will build the JNI modulesin libexec.</p><example>resin-2.1.0> ./configureresin-2.1.0> makeresin-2.1.0> make install</example><p>bin/httpd.sh uses a perl script, resin-2.1.0/bin/wrapper.pl,to control the Java process.  (bin/httpd.sh is a tiny shell scriptthat calls wrapper.pl.)  You can modify bin/httpd.sh</p><p>If you need to stop Resin with <var/kill/>, you'll need to killthe wrapper.pl process to make sure it doesn't restart Resin.  ("httpd.sh stop"works by killing the wrapper.pl process.)or bin/wrapper.pl for your configuration.</p><p>In a production environment, the "start" and "stop" arguments tobin/httpd.sh will start and stop Resin as a Unix daemonfor extra reliability.  If Resin should ever exit,it will automatically be restarted.</p></s3><s3 name="script" title="Starting Script"><p>The starting script will start and stop your Resin instance, and willpass any <a href="#command-line">command-line arguments</a> to Resin.The script will typically do a number of things:</p><ol><li>Configure the location of Java in JAVA_HOME</li><li>Configure the location of Resin in RESIN_HOME</li><li>Configure your web site directory in SERVER_ROOT</li><li>Select a server and pid file if you have multiple Resin servers.</li><li>Start and stop the Resin daemon.</li></ol><p>The start script might look like:</p><example title="Example start.sh script">#!/bin/shJAVA_HOME=/usr/javaRESIN_HOME=/usr/local/resinSERVER_ROOT=/usr/local/webexport JAVA_HOMEexport RESIN_HOMEexport SERVER_ROOT$RESIN_HOME/bin/httpd.sh -server-root $SERVER_ROOT \                      -conf $SERVER_ROOT/conf/resin.conf \                      -server a -pid $SERVER_ROOT/a.pid \                      $*</example><p>The script would be called as "./start.sh start" to startand "./start.sh stop" to stop.</p><p>The <code>-server</code> and <code>-pid</code> arguments are onlynecessary if you have multiple JVMs either on different machinesor the same machine.The <a href="balance.xtp">load balancing</a> and<a href="sessions.xtp">distributed sessions</a> pages describe whenyou might use -server and -pid.</p><website><p>More information on deploying on Unix is available at:</p><ul><li><a href="../java_tut/linux-boot.xtp">Linux boot configuration</a></li><li><a href="../java_tut/tcp-sessions.xtp">TCP-ring configuration</a></li><li><a href="../java_tut/isp.xtp">ISP configuration</a></li></ul></website></s3></s2><s2 title="Windows"><s3 title="Getting Started"><ol><li>Install JDK 1.2 or later.</li><li>Unzip resin-2.1.0.zip</li><li>Execute resin-2.1.0/bin/httpd</li><li>Browse http://localhost:8080</li></ol><example title='Starting on Win32'>c:\win32> resin1.2\bin\httpdResin 2.0.s010831 (built Fri Aug 31 21:36:18 PDT 2001)Copyright(c) 1998-2001 Caucho Technology.  All rights reserved.Starting Resin on Mon, 03 Sep 2001 19:15:22 -0700 (PDT)http listening to *:8080srun listening to localhost:6802</example></s3><s3 title='Deploying as an NT Service'><p>The Resin Web Server can be installed as an NT service.</p><p>To install the service, use</p><example>c:\> resin-2.1.x\bin\httpd -install -conf/myconf.conf</example><p>To remove the service, use</p><example>c:\> resin-2.1.x\bin\httpd -remove</example><p>You will either need to reboot the machine or start the servicefrom the Control&nbsp;Panel/Services panel to start the server.  On amachine reboot, NT will automatically start the web server.</p><p>You can also start and stop the service from the command-line:</p><example>c:\> net start resin...c:\> net stop resin</example><p>Resin's -install saves the command-line arguments and starts the servicewith those arguments.  You can look at them in the control panel, underthe executable string.</p><p>With multiple servers, you can use -install-as <var/foo/> to specifythe service name.</p><example>c:\> resin-2.0.x\bin\httpd -install-as ResinA -conf/myconf.conf -server ac:\> net start ResinA</example><note>There is a bug in many JDKs which cause the JDK to exit when theadministrator logs out.  JDK 1.3 and later can avoid that bug if theJDK is started with -Xrs. </note><example>dos> resin2.0/bin/httpd -install -Xrs</example></s3></s2><s2 name="command-line" title="Command-line arguments"><deftable><tr><th>Argument</th><th>Meaning</th><th>Default</th></tr><tr><td>-verbose</td><td>Show the Java environment before starting Resin.</td><td>off</td></tr><tr><td>-conf <var/xxx/><td>Selects the Resin configuration file<td>conf/resin.conf<tr><td>-java_home <var/xxx/><td>Sets the JDK (also recognizes the environment variable JAVA_HOME.)<td>A heuristic search <tr><td>-resin_home <var/xxx/><td>Sets the Resin home directory (also recognizes the environment variable RESIN_HOME.)<td>The parent directory of wrapper.pl<tr><td>-classpath <var/xxx/><td>Adds to the system classpath.<td>$CLASSPATH<tr><td>-pid <var/xxx/><td>(Unix) With <var/start/> or <var/stop/>, sets the fileto save the process id.<td>resin.pid<tr><td>-stdout <var/xxx/><td>Sets the file to save stdout messages.<td>log/stdout.log.<tr><td>-stderr <var/xxx/><td>Sets the file to save stdout messages.<td>log/stderr.log.<tr><td>-D<var/my.foo/>=<var/value/><td>Sets a Java system property.<td>n/a<tr><td>-X<var/xxx/><td>Passes the -X<var/xxx/> command to the JDK.<td>n/a<tr><td>-J<var/xxx/><td>Passes <var/xxx/> as a JDK argument.<td>n/a<tr><td>-nojit<td>Disables the Just-In-Time compiler. Useful for debugging.<td>enabled<tr><td>start<td>(Unix) Starts Resin as a daemon, saving the pid in the pid file.<td>n/a<tr><td>stop<td>(Unix) Stops Resin as a daemon, using the pid in the pid file.<td>n/a<tr><td>restart<td>(Unix) Restarts Resin as a daemon, using the pid in the pid file.<td>n/a<tr><td>-install<td>(NT) install Resin as a service (but doesn't automatically start.)<td>n/a<tr><td>-install-as <var/xxx/><td>(NT) install Resin as a named service (but doesn't automatically start.)<td>n/a<tr><td>-remove<td>(NT) install Resin as a service (but doesn't automatically start.)<td>n/a<tr><td>-remove-as <var/xxx/><td>(NT) remove Resin as a named service (but doesn't automatically start.)<td>n/a</deftable><s3 title='Memory Configuration'><p>Memory configuration is part of the JVM's arguments.  For most JVMs,you can find the full list by starting "java -X".</p><deftable title='Memory Configuration'><tr><td>-Xms&lt;size><td>Initial Java heap size, e.g. -Xms32m<tr><td>-Xmx&lt;size><td>Maximum Java heap size, e.g. -Xmx128m</deftable></s3></s2><s2 title='Starting Java directly'><p>You can use the <var/-verbose/> flag to see the arguments the startupscripts/executables pass to the JDK.  The main Java executable is<var/com.caucho.server.http.HttpServer/> and starting Resin looks likethe following, once you've properly configured the classpath:</p><example>unix> java -Dresin.home=/usr/resin \           com.caucho.server.http.HttpServer \           -conf conf/resin.conf </example></s2></s1>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -