2008年4月12日土曜日

Ubuntu にJDK5 Tomcat5.5 をインストール2

自作のjspを置く

Ubuntu Gusty Gibbon 7.10
VMware

******************************

参考サイトが消えてたとき用memo

アドレスは
http://hoge.fuga.fugu.fugo/
と仮定する

自作jspの置き場を
foo
と仮定する

******************************

自作jspの置き場を作る
# mkdir /usr/share/tomcat5.5-webapps/foo

/usr/share/tomcat5.5-webapps/hoge.xml を編集してfooのある場所をtomcatに指示する
# vi /usr/share/tomcat5.5-webapps/hoge.xml
<Context path="/foo" docBase="/usr/share/tomcat5.5-webapps/foo" debug="0" privileged="true" allowLinking="true">
</Context>

リンクをはる
# ln -s /usr/share/tomcat5.5-webapps/foo.xml /etc/tomcat5.5/Catalina/localhost/foo.xml

テスト用jspを置いてみる
# vi /usr/share/tomcat5.5-webapps/foo/hello.jsp
--------script-start--------
<html>
<head>
<title>Hello World JSP</title>
</head>
<body>
<%
String s= "Hello World";
out.println(s);
%>
</body>
</html>
---------script-end---------

tomcat Apache2の順番で 再起動
# /etc/init.d/tomcat5.5 restart
# /etc/init.d/apache2 restart

アクセスしてみる
http://hoge.fuga.fugu.fugo:8180/foo/hello.jsp

参考
http://powerpower.cocolog-nifty.com/blog/2007/11/ubuntu_tomcat55.html
http://blog.goo.ne.jp/jakaodava/e/829793f4864c2d239586fc536c14bfb7

0 コメント: