Hello: I did read the tomcat-users.xml but none of the username/password works. I opened up the Tomcat Administration page and entered the username/password.
Thanks for your help. -----Original Message----- From: D. Stimits [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 30, 2004 4:11 PM To: [EMAIL PROTECTED] Subject: Re: What's the defaukt Admin user id/password Venkat & Radha Venkataramanan wrote: > Hello: > > Can somebody tell me what the default admin user id/password is? Thanks. By default it is disabled. Go to the $CATALINA_HOME/conf/ directory, and open "tomcat-users.xml". Edit there. A sample to give both admin and manager perms to user "myself" and to "tomcat", password "mypass" (beware email line wrap): <?xml version='1.0' encoding='utf-8'?> <tomcat-users> <role rolename="tomcat"/> <role rolename="manager"/> <role rolename="admin"/> <user username="myself" password="mypass" roles="tomcat,manager,admin"/> <user username="tomcat" password="mypass" roles="tomcat,manager,admin"/> </tomcat-users> --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
