From cc41030c4a651cf112d8c2a0deb1ff307946ecfd Mon Sep 17 00:00:00 2001
From: markt
Date: Sat, 17 Oct 2009 19:22:16 +0000
Subject: [PATCH] Change of name for role
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@826293 13f79535-47bb-0310-9956-ffa450edef68
---
webapps/docs/manager-howto.xml | 19 ++++++++++---------
1 file changed, 10 insertions(+), 9 deletions(-)
diff --git a/webapps/docs/manager-howto.xml b/webapps/docs/manager-howto.xml
index b631bc4e4..e6672ba9f 100644
--- a/webapps/docs/manager-howto.xml
+++ b/webapps/docs/manager-howto.xml
@@ -146,15 +146,16 @@ With Ant for more information.
anyone on the Internet to execute the Manager application on your server.
Therefore, the Manager application is shipped with the requirement that anyone
who attempts to use it must authenticate themselves, using a username and
-password that have the role manager associated with them.
-Further, there is no username in the default users file
+password that have the role manager-script associated with
+them. Further, there is no username in the default users file
($CATALINA_BASE/conf/tomcat-users.xml) that is assigned this
role. Therefore, access to the Manager application is completely disabled
by default.
To enable access to the Manager web application, you must either create
a new username/password combination and associate the role name
-manager with it, or add the manager role
+manager-script with it, or add the
+manager-script role
to some existing username/password combination. Exactly where this is done
depends on which Realm implementation you are using:
@@ -166,7 +167,7 @@ depends on which Realm implementation you are using:
<user> for each individual user, which might
look something like this:
-<user name="craigmcc" password="secret" roles="standard,manager" />
+<user name="craigmcc" password="secret" roles="standard,manager-script" />
which defines the username and password used by this individual to
log on, and the role names he or she is associated with. You can
@@ -174,15 +175,15 @@ depends on which Realm implementation you are using:
roles attribute for one or more existing users, and/or
create new users with that assigned role.
JDBCRealm - Your user and role information is stored in
- a database accessed via JDBC. Add the manager role
+ a database accessed via JDBC. Add the manager-script role
to one or more existing users, and/or create one or more new users
with this role assigned, following the standard procedures for your
environment.
JNDIRealm - Your user and role information is stored in
- a directory server accessed via LDAP. Add the manager
- role to one or more existing users, and/or create one or more new users
- with this role assigned, following the standard procedures for your
- environment.
+ a directory server accessed via LDAP. Add the
+ manager-script role to one or more existing users,
+ and/or create one or more new users with this role assigned, following
+ the standard procedures for your environment.
The first time you attempt to issue one of the Manager commands
--
2.11.0