LoginSignup
3
3

More than 5 years have passed since last update.

Tomcat の管理アプリの使い方

Last updated at Posted at 2013-03-17

管理アプリを使うにはログインする必要がありますが、Tomcat のインストール直後はユーザが存在しません。
conf/tomcat-users.xml に記述して再起動。
ちなみに Tomcat 7 から、それまでと role 名が変わっているのでご注意を。

conf/tomcat-users.xml
<tomcat-users>
  <role rolename="manager-gui" />
  <user username="admin" password="nyaaaaa!" roles="manager-gui" />
</tomcat-users>
3
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3