resin 可以在 http://www.caucho.com/download/index.xtp 免費下載和使用。
下載resin 時選擇archive versi 中的 windows.zip的普通安裝包resin-2.1.0.zip。
把該zip包解壓到任何目錄下面,如d:resin
1.進入d:resinbinhttpd.exe開啟resin服務
(注意:要想讓resin服務和系統一起啟動就要在cmd下做設定)
a:執行中輸入cmd
b:切換到d:resinbin目錄下執行httpd -install
c:管理工具→服務中把resin web server服務開啟
2.測試:http://ip:8080
apache服務的安裝
1.下載apache_2.0.54-win32-x86-no_ssl.msi
2.執行所下載的檔案
3.在所需填的空中輸入 localhost localhost me@localhost
4.安裝目錄選擇d盤
5.其餘都安預設安裝
6.啟動apache 服務,如不能啟動。可以用 apache.exe -k install -n “服務名” 這樣載入成服務,
(此命令在d:apache2bin目錄下執行)以後就可以用 net start `服務名` 來啟動服務了。
直到可以啟動apache 為止才能做下一步

resin和apache配合使用
其實就是對其配置檔案進行修改

1.resin的配置檔案
以下就按以上安裝的講解
a:d:resinconfresin.c
b:<http-server>
<!–
– the root file directory of the server. apache users will change
– this to /usr/local/apache/htdocs and iis users will change it
– to d:inetpubwwwroot
–>
<doc-dir>d:apache2htdocs</doc-dir>
可以看出就要是把<doc-dir> </doc-dir>之間的目錄改為apache的安裝路徑

儲存退出
2.對aapache的配置檔案更改
a:d:apache2confhttpd.c
第一種方式:
在新增模組的地方加入:
loadmodule caucho_module “d:/resin/libexec/apache-2.0/mod_caucho.dll”

然後在httpd.c

<ifmodule mod_caucho.c>
cauchoc “d:/resin/conf/resin.c
# for security, deployment sites may want to
# comment the following out.
<location /caucho-status>
sethandler caucho-status
</locati
</ifmodule>

第二種方式:
切換到resin目錄下的bin目錄,執行setup,選中apache,按下apply,然後會自動在apache的
httpd.c

注:後面這種安裝方式比較簡單
要想讓apache和resin共用一個埠必須更改apache的配置檔案httpd.c
其中namevirtualhost *:80 這一行預設是被註釋掉了,只需要把註釋去掉就可以了.

3.重啟服務:管理工具→服務(最好先重啟apache,否則可能提示apache服務無法啟動)

4.做一個簡單的jsp檔案test.jsp(我們用resin站點的例子)

該檔案放在:apache/htdocs/test.jsp

內容如下:

<%@ page language=javascript %>

2 + 2 = <%= 2 + 2 %>

在瀏覽器中輸入:http://localhost/test.jsp,應該出現下面結果:

2+2=4

windows環境下resin和apache的配置

 

resin 可以在 http://www.caucho.com/download/index.xtp 免費下載和使用。
下載resin 時選擇archive versi 中的 windows.zip的普通安裝包resin-2.1.0.zip。
把該zip包解壓到任何目錄下面,如d:resin
1.進入d:resinbinhttpd.exe開啟resin服務
(注意:要想讓resin服務和系統一起啟動就要在cmd下做設定)
a:執行中輸入cmd
b:切換到d:resinbin目錄下執行httpd -install
c:管理工具→服務中把resin web server服務開啟
2.測試:http://ip:8080
apache服務的安裝
1.下載apache_2.0.54-win32-x86-no_ssl.msi
2.執行所下載的檔案
3.在所需填的空中輸入 localhost localhost me@localhost
4.安裝目錄選擇d盤
5.其餘都安預設安裝
6.啟動apache 服務,如不能啟動。可以用 apache.exe -k install -n “服務名” 這樣載入成服務,
(此命令在d:apache2bin目錄下執行)以後就可以用 net start `服務名` 來啟動服務了。
直到可以啟動apache 為止才能做下一步

resin和apache配合使用
其實就是對其配置檔案進行修改

1.resin的配置檔案
以下就按以上安裝的講解
a:d:resinconfresin.c
b:<http-server>
<!–
– the root file directory of the server. apache users will change
– this to /usr/local/apache/htdocs and iis users will change it
– to d:inetpubwwwroot
–>
<doc-dir>d:apache2htdocs</doc-dir>
可以看出就要是把<doc-dir> </doc-dir>之間的目錄改為apache的安裝路徑

儲存退出
2.對aapache的配置檔案更改
a:d:apache2confhttpd.c
第一種方式:
在新增模組的地方加入:
loadmodule caucho_module “d:/resin/libexec/apache-2.0/mod_caucho.dll”

然後在httpd.c

<ifmodule mod_caucho.c>
cauchoc “d:/resin/conf/resin.c
# for security, deployment sites may want to
# comment the following out.
<location /caucho-status>
sethandler caucho-status
</locati
</ifmodule>

第二種方式:
切換到resin目錄下的bin目錄,執行setup,選中apache,按下apply,然後會自動在apache的
httpd.c

注:後面這種安裝方式比較簡單

3.重啟服務:管理工具→服務(最好先重啟apache,否則可能提示apache服務無法啟動)

4.做一個簡單的jsp檔案test.jsp(我們用resin站點的例子)

該檔案放在:apache/htdocs/test.jsp

內容如下:

<%@ page language=javascript %>

2 + 2 = <%= 2 + 2 %>

在瀏覽器中輸入:http://localhost/test.jsp,應該出現下面結果:

2+2=4