Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How exit from tomcat application manager?

Tags:

java

tomcat

I have configured and run tomcat. Then I went to URL:

http://localhost:8080/manager/html

entered "admin" as username and pass, that had been configured before. So after that I can see Tomcat manager, there are some deploy and undeploy controls but no "exit" or "unlogin" button. How I can log off from Tomcat manager?

like image 270
Cherry Avatar asked Nov 01 '13 10:11

Cherry


People also ask

How do I open Tomcat application Manager?

The default path to load the Tomcat Manager application is http://localhost:8080/manager/html. You will be prompted to enter the username and password that was stored in tomcat-users.

How do I know if Tomcat is running?

Use a browser to check whether Tomcat is running on URL http://localhost:8080 , where 8080 is the Tomcat port specified in conf/server. xml. If Tomcat is running properly and you specified the correct port, the browser displays the Tomcat homepage.

What is Tomcat Manager?

In a nutshell, the Tomcat Manager App is a web application that is packaged with the Tomcat server and provides us with the basic functionality we need to manage our deployed web applications. As we're going to see, the application has many features and services.


1 Answers

You have to close the browser window.

The Tomcat Manager application uses BASIC authentication and while there are a number of browser specific tricks applications can use to try and implement log off, closing the browser is the only sure way to do this.

like image 90
Mark Thomas Avatar answered Sep 19 '22 01:09

Mark Thomas