Salut,
Dans le fichier tomcat-users.xml qui se trouve dans le rép conf de l'installation de Tomcat, tu as les utilisateurs et leurs rôles respectifs ...
Pour l'administration à distance, le rôle est admin
Pour le manager, c'est manager
Pour le manager, (tiré de la doc Tomcat 5.x)
Further, there is no username in the default users file ($CATALINA_HOME/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 to some existing username/password combination.
Par ex:.
<user name="moi" password="pw4moi" roles="standard,manager" />
Pour l'admin, c'est pareil avec le rôle admin
sfx