5

Tomcat 6.0 の DNS 名を設定したい。Tomcat 6.0 で server.xml ファイルを編集して試してみました。私の要件は、localhost ではなく、有効なドメイン名です。通常、http://localhost:8080Tomcat マネージャー ページにアクセスするために使用されます。変更しようとしましたが、できません。ドメイン名の設定を手伝ってください。

4

2 に答える 2

13

tomcat のホストにパブリック ドメイン名がない場合は、ホスト ファイルを編集する必要があります。お使いの OS が unix ファミリー (Linux、MacOSX など) の場合、ホスト ファイルは/etc/hosts. 次の行を追加できます。

127.0.0.1 your.host.name

OS が Windows の場合、hosts ファイルは次の場所にあります。

C:\Windows\System32\drivers\etc\hosts

hosts ファイルを編集したら、tomcat を再起動します。http://your.host.name:8080次に、ブラウザのアドレス フィールドに入力して、Tomcat にアクセスできます。

于 2012-11-23T10:16:48.037 に答える
7
step1>open notepad as administrator
step2>in notepad open C:\Windows\System32\drivers\etc and select hosts file.
step3>replace # 127.0.0.1 localhost to 127.0.0.1 www.yourdomain.com and save the file.
note: not click on save as. don't forget to remove #
step4>add your application to webapp folder
step5>open tomcat and search server.xml and open it. and then change http port no to 80
<Connector port="80" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />

step6>under <Engine> tag add the following
<Host name="www.yourdomain.com"  appBase="webapps"
        unpackWARs="true" autoDeploy="true">
        <Context path="" docBase="your project name"/>
        </Host>
adn save the file.
note: Make Sure that you have welcome file config.. in web.xml

step7>now restart tomcat server
step8>open browser and type www.yourdomain.com
...........................................................
于 2014-11-12T18:48:25.087 に答える