We have a Tomcat 5.5.17 with a approot.xml file in
conf\Catalina\localhost just pointing to a shared disk location
<?xml version="1.0" encoding="UTF-8"?>
<Context
docBase="G:/ibi/apps">
</Context>
If for any reason/technical problem this disk is temporarily not
available Tomcat undeploy the application and deletes the approot.xml
with the following message
7 janv. 2010 16:27:31 org.apache.catalina.startup.HostConfig
checkResources
INFO: Repli (undeploy) de l'application web ayant pour chemin de
contexte /approot
How can we prevent this from happening, because whenever the disk is
back online, someone has to manually copy back the context root into the
location.
Thanks.