Questions tagged [tomcat-manager]

Management interface for the tomcat container. It supports deploying, undeploying and requesting a reload without restarting the whole container.

Management interface for the tomcat container. It supports without restarting the whole container:

  • list associated web applications and their status; with session if currently running
  • deploying a WAR file as an upload or from the server file system
  • undeploy/deleting a web application
  • start and stop a web application
  • request a reload
  • show system and container info

The interface can be accessed through the browser, custom HTTP requests and ant tasks.

41 questions
15
votes
4 answers

Deploying in tomcat with exception: Cannot find operation isServiced

I installed Tomcat and Tomcat Manager on a remote server as per the instructions on this post. After adding it I successfully accessed the manager on http://IP_ADDRESS:8080/manager/html Then I used the war file upload option to try to deploy the…
S.Dan
  • 1,826
  • 5
  • 28
  • 55
9
votes
2 answers

Restrict access to Tomcat manager by IP

I'm trying to restrict all the requests to my Tomcat manager which don't come from my IP. So far, I found that adding a Valve to the server.xml like this: will block all…
muilpp
  • 1,293
  • 4
  • 17
  • 36
7
votes
3 answers

how can I install Tomcat Manager without reinstalling Tomcat?

OS: windows XP. I already have a working Tomcat 7.0.25 installation and the folder "manager" is in the webapps folder. I have read the documentation here: http://tomcat.apache.org/tomcat-7.0-doc/manager-howto.html and is talking about already…
Pierpaolo
  • 567
  • 3
  • 7
  • 17
5
votes
2 answers

Tomcat Manager Authentication repeated popup while running a Java web project

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…
Sumit Dhiman
  • 109
  • 3
  • 8
4
votes
1 answer

Disallow remote access to Tomcat Manager?

According to the Tomcat7 docs, I can add a valve to prevent access to the Tomcat Manager app except from localhost:
tpdi
  • 34,554
  • 11
  • 80
  • 120
3
votes
1 answer

Tomcat manager deployement via context file fails

I'm trying to deploy a web app via tomcat manager by only specifying the context file, as described in the tomcat 7 documentation at http://tomcat.apache.org/tomcat-7.0-doc/manager-howto.html#Deploy_A_New_Application_from_a_Local_Path. I'm issuing…
devlearn
  • 1,725
  • 2
  • 17
  • 30
3
votes
0 answers

Tomcat Manager app not showing active sessions when configure to store sessions using memcache

I've configured tomcat to use memcache as the session storage. Prior to this I have been able to inspect and count how many active sessions are current using the tomcat /manager webapp. After configuring tomcat to use memcache, however, I've noticed…
user1828428
  • 51
  • 1
  • 2
2
votes
1 answer

Jenkins auto deploying failed, when all settings are right. -- error in mapperLocations, Spring (illegalArgumentException, TomcatManagerException)

I want to share some Jenkins auto-deployment issue solutions, that I could not find on the internet including here. But I'm almost a freshman in StackOverflow, so I'm just here to ask myself and answer myself right away. // I have tried to share the…
2
votes
1 answer

How to preserve xml configuration when redeploying using update?

I'm using tomcat manager to deploy my war files. To update a war I use the following url: http://localhost:8080/manager/deploy?path=/example&war=file:/path/example.war&update=true The problem is that using this, the xml with the configuration…
Mateu
  • 2,636
  • 6
  • 36
  • 54
2
votes
1 answer

Tomcat immediately undeploys .war after a successful deploy to webapps directory

I have an Octopus deployment plan using the Tomcat Manager step to deploy a .war to a linux box's instance of Tomcat. The deployment seems to succeed, but Tomcat will immediately undeploy it, causing a cycle of deployment attempts until Octopus…
Sly_Boots
  • 185
  • 2
  • 14
2
votes
0 answers

How to configure manager app to work with JNDI ream?

I want to make the manager app to work with LDAP, at the moment i have managed to make manager app to work with the realm org.apache.catalina.realm.MemoryRealm but i need to make it work with this realm org.apache.catalina.realm.JNDIRealm. I have…
cousma
  • 87
  • 1
  • 10
2
votes
2 answers

Accessing Tomcat manager throws 404

I am using Tomcat 7.0.65. Here is my tomcat-users.xml:
user170008
  • 1,046
  • 6
  • 17
  • 31
2
votes
0 answers

How to avoid permission denied when deploying with tomcat manager?

I'm trying to deploy a web app located in my home directory using the tomcat manager app (through its web interface) and get the following error: java.io.FileNotFoundException: /home/rick/projects/my-web-app/build/war (Permission denied) at…
Rickard Lindberg
  • 384
  • 2
  • 6
  • 13
1
vote
0 answers

How to get the details of applications deployed on Tomcat server?

I am trying to develop a web application to monitor a Tomcat server using Spring Boot. I need to retrieve information on all server instances and applications deployed on the Tomcat server. I have been searching for resources on how to use the…
1
vote
0 answers

Not able to access Apache Tomcat Server 9.0.73 remotely

I have installed Apache Tomcat 9.0.73 on RHEL remote machine. I followed the installation steps from this link - https://www.digitalocean.com/community/tutorials/install-tomcat-on-linux Apache Tomcat Service is running properly, but I am not able to…
Shubhankar
  • 11
  • 2
1
2 3