I get a repeatedly popup to login to Tomcat Manager Application whenever I try running a Java web Project.
Putting in the username/password according to server properties (Manager-script) role doesn't work, the retarded server keeps popping up again with authentication required.
The server is Tomcat 8.0.27 with Netbeans 8.1 Suggestions anyone?
You should create
manager-gui
role and grant it to the user intomcat-users.xml
.By default Tomcat installs two applications
manager
andhost-manager
. These applications are in thewebapps
and they are using basic authentication mechanism to access their pages. Predefined roles above give access to these administrative apps. More about Manager apps you can find in the docs.