※ ChatGPTを利用し、要約された質問です(原文:CentOS5でのTomcat5の設定方法)
CentOS5でのTomcat5の設定方法
このQ&Aのポイント
CentOS 5.5にyumでtomcat5.i386をインストールし、Tomcat5が自動起動できるようになりました。
/usr/share/tomcat5/conf/tomcat-users.xmlを修正して、manager、tomcat、admin、role1の4つのロールとそれに対応する4つのユーザーを設定しました。
CentOSのFirefoxからhttp://localhost:8080/manager/htmlにアクセスしたが、何も表示されなかった。修正が必要なファイルがあるかどうかを知りたい。
下記の作業をしました。
1. CentOS 5.5にyumでtomcat5.i386をインストールしました。
2. /etc/rc.d/init.d/tomcat5を修正し、Tomcat5が自動起動できるようになりました。
3. /usr/share/tomcat5/conf/tomcat-users.xmlを下記のように修正しました。
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="manager"/>
<role rolename="tomcat"/>
<role rolename="admin"/>
<role rolename="role1"/>
<user username="both" password="tomcat" roles="tomcat,role1"/>
<user username="tomcat" password="tomcat" roles="tomcat"/>
<user username="admin" password="xxxxxxxx" roles="admin,manager"/>
<user username="role1" password="tomcat" roles="role1"/>
</tomcat-users>
4. CentOSのFirefoxから下記のURLを入力しましたが、何も表示されません。
http://localhost:8080/manager/html
他にも修正が必要なファイルがあるのでしょうか。
よろしくお願いします。
お礼
まさに、その通りでした。 ありがとうございました。