Hi, Look in the file /conf/tomcat-users.xml. If you want to use the Tomcat Administration or Manager tools, you will need something like this:
<?xml version='1.0' encoding='utf-8'?> <tomcat-users> <role rolename="tomcat"/> <role rolename="role1"/> <role rolename="manager"/> <role rolename="admin"/> <user username="tomcat" password="tomcat" roles="tomcat"/> <user username="role1" password="tomcat" roles="role1"/> <user username="both" password="tomcat" roles="tomcat,role1"/> <user username="root" password="root" roles="admin,manager"/> </tomcat-users> You can also look at: http://localhost:8080/tomcat-docs/realm-howto.html, for other methods of adding users, i.e. JDBC. Regards, Paul. -----Original Message----- From: Jayanshu Gandhi [mailto:[EMAIL PROTECTED]] Sent: 18 February 2003 07:36 To: [EMAIL PROTECTED] Subject: Tomcat querry Dear Sir, I have installed tomcat-4.1.18 on red hat linux-8.0 My problem is how to set password and username for administrator and manager and also for other users and group. Kindly show me steps. Thanking you, Jayanshu Gandhi __________________________________________________ Do you Yahoo!? Yahoo! Shopping - Send Flowers for Valentine's Day http://shopping.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
