tomcat manager

xenox

Grünschnabel
hallo,

iich sitze seit tagen an diesem problem. habe alles versucht, komme nich weiter.

ich tippe http://localhost:8080/manager ein, sehe den dialog für username und passwort, tippe paaswort und useer name ein, mir wird der zugang verweigert.
warum,?

ich habe doch einen eintrag in der tomcat-user.xml gemacht.

<tomcat-users>
<role rolename="tomcat"/>
<role rolename="role1"/>
<user name="ad" password="pw" roles="admin,manager" />
<user name="tomcat" password="tomcat" roles="tomcat" />
<user name="role1" password="tomcat" roles="role1" />
<user name="both" password="tomcat" roles="tomcat,role1" />
</tomcat-users>

wa mache ich falsch?


danke
 
Hallo!

Siehe :

http://jakarta.apache.org/tomcat/to...o.html#Configuring Manager Application Access

It would be quite unsafe to ship Tomcat with default settings that allowed 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 ($CATALINA_HOME/conf/tomcat-users.xml) that is assigned this role. Therefore, access to the Manager application is completely disabled by default.


Wenn du der Anleitung darunter folgst geht's. (Nach nem Tomcat-neustart"

Gruß Tom
 
danke,
den text aus der tomcat doc kenne ich schon. habe mehrfach gelesen, und die erweiterungen in derr user.xml datei gemacht, wie ich es beschrieben habe. es funktionert nicht.

gruss
 
Hallo!

Bei mir gehts.
Ich hab es sogar extra Ausprobiert.
1)Tomcat entpackt.
2)Tomcat starten
3)Versucht mit http://localhost:8080/manager/html -> geht nicht (Access Denied)
4)Tomcat gestoppt
4)Eintrag in Tomcat-Users hinzugefügt
5)Tomcat neugestartet
6) Wieder versucht -> erfolg!

Ich verwende die Tomcat Version jakarta-tomcat-4.1.24:

Mein Tomcat-Users.xml
Code:
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
  <role rolename="tomcat"/>
  <role rolename="role1"/>
  <role rolename="manager"/>
  <user username="God" password="password" roles="tomcat,manager"/>
  <user username="tomcat" password="tomcat" roles="tomcat"/>
  <user username="both" password="tomcat" roles="tomcat,manager"/>
  <user username="role1" password="tomcat" roles="role1"/>
</tomcat-users>

Versuchs mal mit nem anderen Editor ... manchmal kommt der Tomcat durcheinander, wenn eine Konfigurationsdatei beispielsweise mit dem Notepad editiert worden ist.

Gruß Tom
 

Neue Beiträge

Zurück