Hi felissa,
that is the
tomcat-users.xml that works:
<?xml version='1.0' encoding='utf-8'?>
<tomcat-users>
<role rolename="admin"/>
<role rolename="manager"/>
<role rolename="tomcat"/>
<role rolename="role1"/>
<user username="admin" password="secret"
roles="manager,admin"/>
<user username="tomcat" password="tomcat"
roles="tomcat"/>
<user username="role1" password="tomcat"
roles="role1"/>
<user username="both" password="tomcat"
roles="tomcat,role1"/>
</tomcat-users>
The
admin's rol I think that is necessary
Please check if you user's suse has an access to this file
ls -l
If you have to change the permissions:
chmod u+rwx tomcat-users.xml
Or maybe you could be that your user must belong to a special group of your o.s. to do something in tomcat
Daniel