Freebsd+Resin成功建立支援jsp平台

來源:互聯網
上載者:User
js 環境:FreeBsd 4.9 Apache1.3.29+php4.3.4+mysql4+ports 安裝

首先要cvsup同步ports ,

/usr/local/bin/cvsup -g -L 2 /usr/local/etc/ports-supfile

/usr/local/bin/cvsup -g -L 2 /usr/local/etc/stable-supfile

然後進入http://www.freebsd.org/ports/java.html

進入bsd 關於java 的官方網站,把jdk-1.4.2p5 所需要軟體都收集全。放到/usr/ports/distfiles 裡


然後進入/usr/ports/java/jdk14

首選要下載j2sdk-1_4_2_02-linux-i586.bin

然後#sh ./j2sdk-1_4_2_02-linux-i586.bin-----解開。然後,本例中:複製到

/usr/local/linux-sun-jdk1.4.2/

用setenv ALT_BOOTDIR /usr/local/linux-sun-jdk1.4.2/ (指向你解壓出來的目錄)


#make 這段時間很常。休息~~~

#make install

註:在安裝時可以有錯誤

make 時可以要用到環境變數。。

(應按錯誤提示,自己改我這句話,此例中我的需要在make 前加

freebsd# unsetenv LANG
freebsd# unsetenv JAVA_HOME
freebsd# unsetenv CLASSPATH
freebsd# setenv ALT_JAVAWS_BOOTDIR /usr/local/jdk1.4.2
freebsd# setenv ALT_BOOTDIR /usr/local/linux-sun-jdk1.4.2/

如果沒有出錯。

在/usr/local/下可以看見。

/usr/local/jdk1.4.2 目錄。

然後測試,/usr/local/jdk1.4.2/bin/java -version

freebsd# ./java -version
java version "1.4.2-p5"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-p5-fuweb_11_dec_2003_16_38)
Java HotSpot(TM) Client VM (build 1.4.2-p5-fuweb_11_dec_2003_16_38, mixed mode)


出現以下。表示jdk 安裝成功



下面安裝RESIN

resin-3.0.4.tar.gz 我下的是這個包,最新的cp 到/usr/local 下

# tar zxvf resin-3.0.4.tar.gz
設定setenv JAVA_HOME /usr/local/jdk1.4.2
# ./configure --with-apxs=/usr/local/sbin/apxs
# make
# make install

然後進入/usr/local/resin-3.0.4/bin
修改httpd.sh 檔案。

# You can predefine JAVA_HOME and RESIN_HOME
#
JAVA_HOME=/usr/local/jdk1.4.2
export JAVA_HOME
#
RESIN_HOME=/usr/local/resin-3.0.4
export RESIN_HOME

wq!


註:APACHE 在/usr/local/etc/apache/httpd.conf 會添加以下模組,

#
# mod_caucho Resin Configuration
#

LoadModule caucho_module /usr/local/libexec/apache/mod_caucho.so
ResinConfigServer localhost 6802

如果有此些表示。整合成功

啟動 resin
http://218.24.233.13:8080 成功

然後配置resin.conf

進入/usr/local/resin-3.0.4/conf

vi resin.conf

後。

編輯以下。

我的伺服器做的是虛擬機器主機。讓其中一個網域名稱支援jsp


配置如下。

freebsd# pwd
<!--
- Resin 3.0 configuration file.
-->
<resin xmlns="http://caucho.com/ns/resin">
<!--
- Logging configuration for the JDK logging API.
-->
<log name=' level='info' path='stdout:' timestamp='[%H:%M:%S.%s] '/>
<log name='com.caucho.java' level='fine' path='stdout:'
timestamp='[%H:%M:%S.%s] '/>
<log name='com.caucho.loader' level='config' path='stdout:'
timestamp='[%H:%M:%S.%s] '/>

<!--
- For production sites, change dependency-check-interval to something
- like 600s, so it only checks for updates every 10 minutes.
-->
<dependency-check-interval>10s</dependency-check-interval>

<!--
- You can change the compiler to "javac" or jikes.
- The default is "internal" only because it's the most
- likely to be available.
-->
<javac compiler="internal" args=""/>

<!-- Security providers.
- <security-provider>
- com.sun.net.ssl.internal.ssl.Provider
- </security-provider>
-->

<!-- creates the deploy directory for .ear expansion -->
<ear-deploy path='deploy'/>

<!-- creates the deploy directory for .rar expansion -->
<resource-deploy path='deploy'/>

<!-- creates a second deploy directory for .war expansion -->
<web-app-deploy path='deploy'/>
</host-default>

<!-- includes the web-app-default for default web-app behavior -->
<resin:include path="app-default.xml"/>

<!-- configures the default host, matching any host name -->
<host id='www.hc888.com'>
<document-directory>/home/fuweb/wwwroot</document-directory>

<!-- configures the root web-app -->
<web-app id='/'>
<!-- adds xsl to the search path -->
<class-loader>
<simple-loader path="$host-root/xsl"/>
</class-loader>

<servlet-mapping url-pattern="/servlet/*" servlet-name="invoker"/>
</web-app>
</host>
</server>
</resin>




如果想自啟動

在/usr/local/etc/rc.d 建一個ln 串連

ln -s resin.sh /usr/local/resin-3.0.4/bin/httpd.sh

後從啟即可。讓你www.hc888.com 目錄支援jsp

test.jsp 檔案

<%@page language="java"%>
2+2=<%=2+2%>


<head>
<%@page language="java"%>
2+2=<%=2+2%>
</head>

<body>



相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.