What is the default username and password in Tomcat?

Viewed 474064

I installed Netbeans and tryed to access the server's manager using: (id/pass)manager/manager, admin/admin, system/password... None of them worked.

19 Answers

Check the file in <TOMCAT_HOME>/conf named tomcat-users.xml. If you don't find something there edit to look something like:

You can access in tomcat Manager-App and Host-Manager. add two role in one line

  <role rolename="manager-gui,admin-gui"/>
  <user username="admin" password="admin" roles="standard,manager-gui,admin-gui"/>
Related