Mihajlo Brankovic
Mihajlo Brankovic

Reputation: 273

Tomcat logout another user as admin

Is there a way for me as an administrator of a web application to programatically manually disable another user's session (log him out)?

I'm using Tomcat web server and Spring MVC.

Upvotes: 0

Views: 1083

Answers (1)

holmis83
holmis83

Reputation: 16604

You can login to the Tomcat Web Application Manager (usually under /manager/html path), find the row for the webapp in question, click on the number indicating number of sessions. Find the session for the user you want to logout and Invalidate that session.

Upvotes: 2

Related Questions