I have set-up a CentOS 7 VPS with Tomcat 8 to serve my applications to my institute, following this guide. I can access the Tomcat server usual page but not the App Manager. I believe I well configured the tomcat-users.xml, but I have no prompt for a login and password and it keeps telling me "403 Access denied".
I already configured tomcat 8 but on an Ubuntu Server more than one year ago, and it worked out of the box.
There is probably something I missed .... but I can't see what it is.
Here is a copy of my tomcat-users.xml :
<?xml version="1.0" encoding="UTF-8"?>
<tomcat-users xmlns="http://tomcat.apache.org/xml"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://tomcat.apache.org/xml tomcat-users.xsd"
version="1.0">
<role rolename="manager-gui"/>
<user username="tomcat-xxxxxxx" password="xxxxxxxxxxxxxxx" roles="manager-gui"/>
</tomcat-users>
Thanks for your help !