Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Use Studio to create a new entry with object class inetOrgPerson (plus super classes).

A user tomcat may look like this in LDIF.

Code Block
dn: uid=tomcat,ou=users,ou=system
objectClass: organizationalPersoninetOrgPerson
objectClass: personorganizationalPerson
objectClass: inetOrgPersonperson
objectClass: top
cn: Tomcat Administrator
sn: Tomcat
uid: tomcat
userPassword: tomcat

...

Use Studio to create a new entry with object class groupOfNames.

A group manager, which contains the previous user, may look like this in LDIF.

Code Block
dn: cn=adminmanager,ou=groups,ou=system
objectClass: groupOfNames
objectClass: top
cn: adminmanager
member: uid=tomcat,ou=users,ou=system

Trying it out

Browse to the Manager web application within your Tomcat installation, http://localhost:8080/manager/Image Added
Using the user and password "tomcat" should lead you to the application, all other input should fail (403).

Next steps

Some ideas I have:

...