<?xml version="1.0" encoding="Shift_JIS"?>
<!DOCTYPE document [
  <!ENTITY project SYSTEM "project.xml">
]>
<document url="introduction.html">

    &project;

    <properties>
        <author email="rslifka@sfu.ca">Robert Slifka</author>
        <primary><title>Introduction</title></primary>
        <title>はじめに</title>
        <translator>阿島 哲夫</translator>
        <editor>高橋達男</editor>
    </properties>

<body>


<primary>
<section name="Introduction" />
</primary>

<section name="はじめに">

<primary>
<p>For administrators and web developers alike, there are some important bits
of information you should familiarize yourself with before starting out. This
document serves as a brief introduction to some of the concepts and
terminology behind the Tomcat container. As well, where to go when you need
help.</p>
</primary>

<p>管理者、Web開発者に関係なく、
最初によく知っておくべき大事な情報がいくつかあります。
このドキュメントではTomcatの背後にある概念と用語のいくつかを簡単に紹介します。
それとともに、助けが必要な時にどこに行けばよいかも紹介します。
</p>

</section>


<primary>
<section name="Terminology" />
</primary>

<section name="用語">

<primary>
<p>In the course of reading these documents, you'll run across a number of
terms; some specific to Tomcat, and others defined by the
<a href="http://java.sun.com/products/servlet/">Servlet</a> or
<a href="http://java.sun.com/products/jsp/">JSP</a> specifications.</p>
</primary>

<p>このサイトのドキュメントを読んでいると、たくさんの用語に出会います。
あるものはTomcat特有のもので、またあるものは
<a href="http://java.sun.com/products/servlet/">サーブレット</a>または
<a href="http://java.sun.com/products/jsp/">JSP</a>仕様で定義されているものです。
</p>

<primary>
<ul>
<li><strong>Context</strong> - In a nutshell, a Context is a
    web application.</li>
<li><strong>Term2</strong> - This is it.</li>
<li><strong>Term3</strong> - This is it!</li>
</ul>
</primary>

<ul>
<li><strong>コンテキスト</strong> - 簡単に言えば、コンテキストとはWebアプリケーションです。</li>
<li><strong>Term2</strong> - そこが大事なところです。</li>
<li><strong>Term3</strong> - そこが大事なところなんです！</li>
<annotaion>「そこが大事なところです。」の原文は"This is it."です。
これは、「誰かこの後を続けて書いてくれ」という意味ではないかと思われます。</annotaion>
</ul>

</section>


<primary>
<section name="Directories and Files" />
</primary>
<section name="ディレクトリとファイル">

<primary>
<p>Throughout the docs, you'll notice there are numerous references to
<strong>$CATALINA_HOME</strong>. This represents the root of your Tomcat
installation. When we say, "This information can be found in your
$CATALINA_HOME/README.txt file" we mean to look at the README.txt file at the
root of your Tomcat install.</p>
</primary>

<p>ドキュメントの至る所に<strong>$CATALINA_HOME</strong>への参照があることに気が付くでしょう。
これはTomcatインストールディレクトリのルートをあらわします。
「この情報は$CATALINA_HOME/README.txtファイルにあります」という場合は、
TomcatインストールディレクトリのルートにあるREADME.txtファイルを参照してください、
という意味です。</p>

<primary>
<p>For the complete description of the Tomcat distribution, each folder can be
found in the <a href="README.txt">README.txt</a> file, residing in the root
directory of your Tomcat installation. Here, we will cover the ones where
you'll be spending the majority of your time.</p>
</primary>

<p>Tomcatの配布や各フォルダの完全な説明は
Tomcatインストールディレクトリのルートにある
<a href="README.txt">README.txt</a>ファイルにあります。
ここではよく使われるものについて説明します。</p>

<primary>
<ul>
<li><strong>/bin</strong> - Startup, shutdown, and other scripts. The
    <code>*.sh</code> files (for Unix systems) are functional duplicates of
    the <code>*.bat</code> files (for Windows systems).  Since the Win32
    command-line lacks certain functionality, there are some additional
    files in here.</li>
<li><strong>/conf</strong> - Configuration files and related DTDs.  The most
    important file in here is server.xml.  It is the main configuration file
    for the container.</li>
<li><strong>/logs</strong> - Log files are here by default.</li>
<li><strong>/webapps</strong> - This is where your webapps go.</li>
</ul>
</primary>

<ul>
<li><strong>/bin</strong> - 起動、終了などのスクリプト。
    <code>*.sh</code>ファイル(Unixシステム用)は<code>*.bat</code>ファイル
    (Windowsシステム用)を機能的に複製したものです。
    Win32コマンドラインはいくつかの機能が欠落しているので、
    このフォルダにはいくつかのファイルが追加されています。</li>
<li><strong>/conf</strong> - 設定ファイル、および関連するDTDファイル。
    このフォルダにある最も重要なファイルはserver.xmlです。
    これはコンテナのメインの設定ファイルです。</li>
<li><strong>/logs</strong> - デフォルトではここにログファイルが出力されます。</li>
<li><strong>/webapps</strong> - Webアプリケーションをここに配置します。</li>
</ul>

</section>


<primary>
<section name="Configuring Tomcat"/>
</primary>

<section name="Tomcatの設定">

<primary>
<p>This section will acquaint you with the basic information used during
the configuration of the container.</p>
</primary>

<p>このセクションでは、コンテナの設定に使用する基本的な情報を紹介します。</p>

<primary>
<p>All of the information in the configuration files is read at startup,
meaning that any change to the files necessitates a restart of the container.
</p>
</primary>

<p>設定ファイル中の全ての情報は起動時に読み込まれます。つまり、
設定ファイルを変更したらコンテナを再起動する必要があります。
</p>

</section>


<primary>
<section name="Where to Go for Help" />
</primary>

<section name="ヘルプが必要な場合は">

<primary>
<p>While we've done our best to ensure that these documents are clearly
written and easy to understand, we may have missed something.  Provided
below are various web sites and mailing lists in case you get stuck.</p>
</primary>

<p>ドキュメントの内容が明確で理解しやすいことを保証するために最善を尽くしていますが、
何か見落としがあるかもしれません。以下に紹介するのは、
行き詰まった時に役立つ、各種Webサイトとメーリングリストです。</p>

<primary>
<p>As Tomcat 5 is a new release of Tomcat, keep in mind that some of the
issues and solutions vary between the major versions of Tomcat (4.x versus
5).  As you search around the web, there will be some documentation that
is not relevant to Tomcat 5, but 3.x and 4.x.  Doing 3.x or 4.x things to 5
will probably not work in most cases as the server.xml files are very
different.</p>
</primary>

<p>Tomcat 5は新しいリリースなので、問題や解決策の中には、
Tomcatのメジャーバージョン間(4.xと5)で異なるものがあることを覚えておいてください。
Webで検索する場合、Tomcat 5には関係ない、3.xや4.xのドキュメントが見つかるかもしれません。
3.xや4.x向けのことを5に対して行っても、server.xmlファイルが著しく異なるため、
ほとんどの場合はおそらく機能しないでしょう。</p>

<ul>
<primary>
<li>Current document - most documents will list potential hangups. Be sure
    to fully read the relevant documentation as it will save you much time
    and effort. There's nothing like scouring the web only to find out that
    the answer was right in front of you all along!</li>
</primary>
<li>このサイトのドキュメント -
    ほとんどのドキュメントで潜在的な問題点を掲載しています。
    多くの時間と労力を省くために、かならず適切なドキュメントをよく読んでください。
    目の前に答えがずっとあったことを知るためだけに、
    Webを探し回るなんていやですよね！</li>
<primary>
<li><a href="http://jakarta.apache.org/tomcat/faq/">Tomcat FAQ</a> as maintained by the developers.</li>
</primary>
<li><a href="http://www.jajakarta.org/tomcat/faq/">Tomcat FAQ(日本語訳)</a>は開発者によって整備されています。</li>
<primary>
<li><a href="http://nagoya.apache.org/wiki/apachewiki.cgi?Tomcat">Tomcat WIKI</a></li>
</primary>
<li><a href="http://nagoya.apache.org/wiki/apachewiki.cgi?Tomcat">Tomcat WIKI</a></li>
<primary>
<li>Tomcat FAQ at <a href="http://www.jguru.com/faq/home.jsp?topic=Tomcat">jGuru</a></li>
</primary>
<li><a href="http://www.jguru.com/faq/home.jsp?topic=Tomcat">jGuru</a>のTomcat FAQ</li>
<primary>
<li>Tomcat mailing list archives - numerous sites archive the Tomcat mailing
    lists. Since the links change over time, clicking here will search
    <a href="http://www.google.com/search?q=tomcat+mailing+list+archives">Google</a>.
    </li>
</primary>
<li>Tomcatメーリングリストアーカイブ - たくさんのサイトが
    Tomcatメーリングリストをアーカイブしています。
    時とともに、リンクは変化するので、ここをクリックして
    <a href="http://www.google.com/search?q=tomcat+mailing+list+archives">Google</a>
    で検索してください。
    </li>
<primary>
<li>The TOMCAT-USER mailing list, which you can subscribe to
    <a href="http://jakarta.apache.org/site/mail.html">here</a>. If you don't
    get a reply, then there's a good chance that your question was probably
    answered in the list archives or one of the FAQs.  Although questions
    about web application development in general are sometimes asked and
    answered, please focus your questions on Tomcat-specific issues.</li>
</primary>
<li>TOMCAT-USERメーリングリスト。
    <a href="http://jakarta.apache.org/site/mail.html">ここ</a>
    から参加できます。もし返信がなかった場合は、
    質問は恐らくアーカイブリストに答えがあるか、FAQのうちの一つです。
    しばしばWebアプリケーション開発に関する一般的な質問と回答が寄せられますが、
    質問はTomcat固有のものに絞ってください。</li>
<primary>
<li>The TOMCAT-DEV mailing list, which you can subscribe to
    <a href="http://jakarta.apache.org/site/mail.html">here</a>.  This list is
    <strong>reserved</strong> for discussions about the development of Tomcat
    itself.  Questions about Tomcat configuration, and the problems you run
    into while developing and running applications, will normally be more
    appropriate on the TOMCAT-USER list instead.</li>
</primary>
<li>TOMCAT-DEVメーリングリスト。
    <a href="http://jakarta.apache.org/site/mail.html">ここ</a>
    から参加できます。このメーリングリストは、
    Tomcatそのものの開発に関する議論のために<strong>限定されています</strong>。
    Tomcatの設定に関する質問や、アプリケーションの開発・実行時の問題については、
    通常はここではなく、TOMCAT-USERメーリングリストに質問してください。</li>
</ul>

<primary>
<p>And, if you think something should be in the docs, by all means let us know
on the TOMCAT-DEV list, or send one of the doc authors email.</p>
</primary>
<p>また、ドキュメントについて何かお気づきの点があれば、
ぜひともTOMCAT-DEVメーリングリストに投稿するか、
ドキュメントの作者のうちの誰かに電子メールを送ってください。</p>

</section>

</body>

</document>
