Package org.apache.catalina.manager
Class ManagerServlet
java.lang.Object
javax.servlet.GenericServlet
javax.servlet.http.HttpServlet
org.apache.catalina.manager.ManagerServlet
- All Implemented Interfaces:
Serializable
,Servlet
,ServletConfig
,ContainerServlet
- Direct Known Subclasses:
HTMLManagerServlet
Servlet that enables remote management of the web applications installed within the same virtual host as this web
application is. Normally, this functionality will be protected by a security constraint in the web application
deployment descriptor. However, this requirement can be relaxed during testing.
This servlet examines the value returned by getPathInfo()
and related query parameters to determine what
action is being requested. The following actions and parameters (starting after the servlet path) are supported:
- /deploy?config={config-url} - Install and start a new web application, based on the contents of the
context configuration file found at the specified URL. The
docBase
attribute of the context configuration file is used to locate the actual WAR or directory containing the application. - /deploy?config={config-url}&war={war-url}/ - Install and start a new web application, based on the
contents of the context configuration file found at
{config-url}
, overriding thedocBase
attribute with the contents of the web application archive found at{war-url}
. - /deploy?path=/xxx&war={war-url} - Install and start a new web application attached to context path
/xxx
, based on the contents of the web application archive found at the specified URL. - /list - List the context paths of all currently installed web applications for this virtual host. Each
context will be listed with the following format
path:status:sessions
. Where path is the context path. Status is either running or stopped. Sessions is the number of active Sessions. - /reload?path=/xxx - Reload the Java classes and resources for the application at the specified path.
- /resources?type=xxxx - Enumerate the available global JNDI resources, optionally limited to those of the specified type (fully qualified Java class name), if available.
- /serverinfo - Display system OS and JVM properties.
- /sessions - Deprecated. Use expire.
- /expire?path=/xxx - List session idle time information about the web application attached to context path
/xxx
for this virtual host. - /expire?path=/xxx&idle=mm - Expire sessions for the context path
/xxx
which were idle for at least mm minutes. - /sslConnectorCiphers - Display diagnostic info on SSL/TLS ciphers that are currently configured for each connector.
- /start?path=/xxx - Start the web application attached to context path
/xxx
for this virtual host. - /stop?path=/xxx - Stop the web application attached to context path
/xxx
for this virtual host. - /threaddump - Write a JVM thread dump.
- /undeploy?path=/xxx - Shutdown and remove the web application attached to context path
/xxx
for this virtual host, and remove the underlying WAR file or document base directory. (NOTE - This is only allowed if the WAR file or document base is stored in theappBase
directory of this host, typically as a result of being placed there via the/deploy
command. - /vminfo - Write some VM info.
- /save - Save the current server configuration to server.xml
- /save?path=/xxx - Save the context configuration for the web application deployed with path
/xxx
to an appropriately named context.xml file in thexmlBase
for the associated Host.
Use path=/
for the ROOT context.
The syntax of the URL for a web application archive must conform to one of the following patterns to be successfully deployed:
- file:/absolute/path/to/a/directory - You can specify the absolute path of a directory that contains the unpacked version of a web application. This directory will be attached to the context path you specify without any changes.
NOTE - Attempting to reload or remove the application containing this servlet itself will not succeed. Therefore, this servlet should generally be deployed as a separate web application within the virtual host to be managed.
The following servlet initialization parameters are recognized:
- debug - The debugging detail level that controls the amount of information that is logged by this servlet. Default is zero.
- Author:
- Craig R. McClanahan, Remy Maucherat
- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionprotected File
Path where context descriptors should be deployed.protected Context
The Context container associated with our web application.protected int
The debugging detail level for this servlet.protected Context
The global JNDINamingContext
for this server, if available.protected Host
The associated host.protected MBeanServer
MBean server.protected ObjectName
The associated deployer ObjectName.protected static final StringManager
The string manager for this package.protected File
Path used to store revisions of webapps.protected Wrapper
The Wrapper container associated with this servlet. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
addServiced
(String name) Deprecated.Unused.protected void
Invoke the check method on the deployer.static boolean
Copy the specified file or directory to the destination.static boolean
copyInternal
(File src, File dest, byte[] buf) Copy the specified file or directory to the destination.protected void
deploy
(PrintWriter writer, String config, ContextName cn, String war, boolean update, StringManager smClient) Install an application for the specified path from the specified web application archive.protected void
deploy
(PrintWriter writer, ContextName cn, String tag, boolean update, HttpServletRequest request, StringManager smClient) Deploy a web application archive (included in the current request) at the specified context path.protected void
deploy
(PrintWriter writer, ContextName cn, String tag, StringManager smClient) Install an application for the specified path from the specified web application archive.void
destroy()
Finalize this servlet.void
doGet
(HttpServletRequest request, HttpServletResponse response) Process a GET request for the specified resource.void
doPut
(HttpServletRequest request, HttpServletResponse response) Process a PUT request for the specified resource.protected void
expireSessions
(PrintWriter writer, ContextName cn, HttpServletRequest req, StringManager smClient) Extract the expiration request parameterprotected void
findleaks
(boolean statusLine, PrintWriter writer, StringManager smClient) Find potential memory leaks caused by web application reload.getConnectorCerts
(StringManager smClient) getConnectorCiphers
(StringManager smClient) getConnectorTrustedCerts
(StringManager smClient) Return the Wrapper with which we are associated.void
init()
Initialize this servlet.protected boolean
isDeployed
(String name) Invoke the isDeployed method on the deployer.protected boolean
isServiced
(String name) Deprecated.Unused.protected void
list
(PrintWriter writer, StringManager smClient) Render a list of the currently active Contexts in our virtual host.protected void
printResources
(PrintWriter writer, String prefix, Context namingContext, String type, Class<?> clazz, StringManager smClient) Deprecated.UseprintResources(PrintWriter, String, javax.naming.Context, String, StringManager)
This method will be removed in Tomcat 10.x onwardsprotected void
printResources
(PrintWriter writer, String prefix, Context namingContext, String type, StringManager smClient) List the resources of the given context.protected void
reload
(PrintWriter writer, ContextName cn, StringManager smClient) Reload the web application at the specified context path.protected void
removeServiced
(String name) Invoke the removeServiced method on the deployer.protected void
resources
(PrintWriter writer, String type, StringManager smClient) Render a list of available global JNDI resources.protected void
save
(PrintWriter writer, String path, StringManager smClient) Store server configuration.protected void
serverinfo
(PrintWriter writer, StringManager smClient) Writes System OS and JVM properties.protected void
sessions
(PrintWriter writer, ContextName cn, int idle, StringManager smClient) Session information for the web application at the specified context path.void
setWrapper
(Wrapper wrapper) Set the Wrapper with which we are associated.protected void
sslConnectorCiphers
(PrintWriter writer, StringManager smClient) protected void
sslReload
(PrintWriter writer, String tlsHostName, StringManager smClient) protected void
start
(PrintWriter writer, ContextName cn, StringManager smClient) Start the web application at the specified context path.protected void
stop
(PrintWriter writer, ContextName cn, StringManager smClient) Stop the web application at the specified context path.protected void
threadDump
(PrintWriter writer, StringManager smClient, Enumeration<Locale> requestedLocales) Write a JVM thread dump.protected boolean
tryAddServiced
(String name) Attempt to mark a context as being servicedprotected void
undeploy
(PrintWriter writer, ContextName cn, StringManager smClient) Undeploy the web application at the specified context path.protected boolean
undeployDir
(File dir) Delete the specified directory, including all of its contents and subdirectories recursively.protected void
uploadWar
(PrintWriter writer, HttpServletRequest request, File war, StringManager smClient) Upload the WAR file included in this request, and store it at the specified file location.protected static boolean
validateContextName
(ContextName cn, PrintWriter writer, StringManager smClient) protected void
vmInfo
(PrintWriter writer, StringManager smClient, Enumeration<Locale> requestedLocales) Write some VM info.Methods inherited from class javax.servlet.http.HttpServlet
doDelete, doHead, doOptions, doPost, doTrace, getLastModified, service, service
Methods inherited from class javax.servlet.GenericServlet
getInitParameter, getInitParameterNames, getServletConfig, getServletContext, getServletInfo, getServletName, init, log, log
-
Field Details
-
configBase
Path where context descriptors should be deployed. -
context
The Context container associated with our web application. -
debug
protected int debugThe debugging detail level for this servlet. -
versioned
Path used to store revisions of webapps. -
host
The associated host. -
mBeanServer
MBean server. -
oname
The associated deployer ObjectName. -
global
The global JNDINamingContext
for this server, if available. -
sm
The string manager for this package. -
wrapper
The Wrapper container associated with this servlet.
-
-
Constructor Details
-
ManagerServlet
public ManagerServlet()
-
-
Method Details
-
getWrapper
Return the Wrapper with which we are associated.- Specified by:
getWrapper
in interfaceContainerServlet
- Returns:
- The Wrapper with which this Servlet is associated.
-
setWrapper
Set the Wrapper with which we are associated.- Specified by:
setWrapper
in interfaceContainerServlet
- Parameters:
wrapper
- The new wrapper
-
destroy
public void destroy()Finalize this servlet.- Specified by:
destroy
in interfaceServlet
- Overrides:
destroy
in classGenericServlet
-
doGet
public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException Process a GET request for the specified resource.- Overrides:
doGet
in classHttpServlet
- Parameters:
request
- The servlet request we are processingresponse
- The servlet response we are creating- Throws:
IOException
- if an input/output error occursServletException
- if a servlet-specified error occurs- See Also:
-
doPut
public void doPut(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException Process a PUT request for the specified resource.- Overrides:
doPut
in classHttpServlet
- Parameters:
request
- The servlet request we are processingresponse
- The servlet response we are creating- Throws:
IOException
- if an input/output error occursServletException
- if a servlet-specified error occurs
-
init
Initialize this servlet.- Overrides:
init
in classGenericServlet
- Throws:
ServletException
- if an exception occurs that interrupts the servlet's normal operation
-
findleaks
Find potential memory leaks caused by web application reload.- Parameters:
statusLine
- Print a status linewriter
- The output writersmClient
- StringManager for the client's locale
-
sslReload
-
vmInfo
protected void vmInfo(PrintWriter writer, StringManager smClient, Enumeration<Locale> requestedLocales) Write some VM info.- Parameters:
writer
- The output writersmClient
- StringManager for the client's localerequestedLocales
- the client's locales
-
threadDump
protected void threadDump(PrintWriter writer, StringManager smClient, Enumeration<Locale> requestedLocales) Write a JVM thread dump.- Parameters:
writer
- The output writersmClient
- StringManager for the client's localerequestedLocales
- the client's locales
-
sslConnectorCiphers
-
save
Store server configuration.- Parameters:
writer
- Destination for any user message(s) during this operationpath
- Optional context path to savesmClient
- i18n support for current client's locale
-
deploy
protected void deploy(PrintWriter writer, ContextName cn, String tag, boolean update, HttpServletRequest request, StringManager smClient) Deploy a web application archive (included in the current request) at the specified context path.- Parameters:
writer
- Writer to render results tocn
- Name of the application to be installedtag
- Tag to be associated with the webappupdate
- Flag that indicates that any existing app should be replacedrequest
- Servlet request we are processingsmClient
- i18n messages using the locale of the client
-
deploy
Install an application for the specified path from the specified web application archive.- Parameters:
writer
- Writer to render results totag
- Revision tag to deploy fromcn
- Name of the application to be installedsmClient
- i18n messages using the locale of the client
-
deploy
protected void deploy(PrintWriter writer, String config, ContextName cn, String war, boolean update, StringManager smClient) Install an application for the specified path from the specified web application archive.- Parameters:
writer
- Writer to render results toconfig
- URL of the context configuration file to be installedcn
- Name of the application to be installedwar
- URL of the web application archive to be installedupdate
- true to override any existing webapp on the pathsmClient
- i18n messages using the locale of the client
-
list
Render a list of the currently active Contexts in our virtual host.- Parameters:
writer
- Writer to render tosmClient
- i18n support for current client's locale
-
reload
Reload the web application at the specified context path.- Parameters:
writer
- Writer to render tocn
- Name of the application to be restartedsmClient
- i18n support for current client's locale
-
resources
Render a list of available global JNDI resources.- Parameters:
writer
- Writer to render totype
- Fully qualified class name of the resource type of interest, ornull
to list resources of all typessmClient
- i18n support for current client's locale
-
printResources
@Deprecated protected void printResources(PrintWriter writer, String prefix, Context namingContext, String type, Class<?> clazz, StringManager smClient) Deprecated.UseprintResources(PrintWriter, String, javax.naming.Context, String, StringManager)
This method will be removed in Tomcat 10.x onwardsList the resources of the given context.- Parameters:
writer
- Writer to render toprefix
- Path for recursionnamingContext
- The naming context for lookupstype
- Fully qualified class name of the resource type of interest, ornull
to list resources of all typesclazz
- UnusedsmClient
- i18n support for current client's locale
-
printResources
protected void printResources(PrintWriter writer, String prefix, Context namingContext, String type, StringManager smClient) List the resources of the given context.- Parameters:
writer
- Writer to render toprefix
- Path for recursionnamingContext
- The naming context for lookupstype
- Fully qualified class name of the resource type of interest, ornull
to list resources of all typessmClient
- i18n support for current client's locale
-
serverinfo
Writes System OS and JVM properties.- Parameters:
writer
- Writer to render tosmClient
- i18n support for current client's locale
-
sessions
Session information for the web application at the specified context path. Displays a profile of session thisAccessedTime listing number of sessions for each 10 minute interval up to 10 hours.- Parameters:
writer
- Writer to render tocn
- Name of the application to list session information foridle
- Expire all sessions with idle time > idle for this contextsmClient
- i18n support for current client's locale
-
expireSessions
protected void expireSessions(PrintWriter writer, ContextName cn, HttpServletRequest req, StringManager smClient) Extract the expiration request parameter- Parameters:
writer
- Writer to render tocn
- Name of the application to list session information forreq
- The Servlet requestsmClient
- i18n support for current client's locale
-
start
Start the web application at the specified context path.- Parameters:
writer
- Writer to render tocn
- Name of the application to be startedsmClient
- i18n support for current client's locale
-
stop
Stop the web application at the specified context path.- Parameters:
writer
- Writer to render tocn
- Name of the application to be stoppedsmClient
- i18n support for current client's locale
-
undeploy
Undeploy the web application at the specified context path.- Parameters:
writer
- Writer to render tocn
- Name of the application to be removedsmClient
- i18n support for current client's locale
-
isDeployed
Invoke the isDeployed method on the deployer.- Parameters:
name
- The webapp name- Returns:
true
if a webapp with that name is deployed- Throws:
Exception
- Propagate JMX invocation error
-
check
Invoke the check method on the deployer.- Parameters:
name
- The webapp name- Throws:
Exception
- Propagate JMX invocation error
-
isServiced
Deprecated.Unused. Will be removed in Tomcat 10.1.x onwards.Invoke the isServiced method on the deployer.- Parameters:
name
- The webapp name- Returns:
true
if a webapp with that name is being serviced- Throws:
Exception
- Propagate JMX invocation error
-
addServiced
Deprecated.Unused. Will be removed in Tomcat 10.1.x onwards. UsetryAddServiced(java.lang.String)
Invoke the addServiced method on the deployer.- Parameters:
name
- The webapp name- Throws:
Exception
- Propagate JMX invocation error
-
tryAddServiced
Attempt to mark a context as being serviced- Parameters:
name
- The context name- Returns:
true
if the application was marked as being serviced andfalse
if the application was already marked as being serviced- Throws:
Exception
- Error invoking the deployer
-
removeServiced
Invoke the removeServiced method on the deployer.- Parameters:
name
- The webapp name- Throws:
Exception
- Propagate JMX invocation error
-
undeployDir
Delete the specified directory, including all of its contents and subdirectories recursively. The code assumes that the directory exists.- Parameters:
dir
- File object representing the directory to be deleted.- Returns:
true
if the deletion was successful
-
uploadWar
protected void uploadWar(PrintWriter writer, HttpServletRequest request, File war, StringManager smClient) throws IOException Upload the WAR file included in this request, and store it at the specified file location.- Parameters:
writer
- Writer to render torequest
- The servlet request we are processingwar
- The file into which we should store the uploaded WARsmClient
- The StringManager used to construct i18n messages based on the Locale of the client- Throws:
IOException
- if an I/O error occurs during processing
-
validateContextName
protected static boolean validateContextName(ContextName cn, PrintWriter writer, StringManager smClient) -
copy
Copy the specified file or directory to the destination.- Parameters:
src
- File object representing the sourcedest
- File object representing the destination- Returns:
true
if the copy was successful
-
copyInternal
Copy the specified file or directory to the destination.- Parameters:
src
- File object representing the sourcedest
- File object representing the destinationbuf
- Temp byte buffer- Returns:
true
if the copy was successful
-
getConnectorCiphers
-
getConnectorCerts
-
getConnectorTrustedCerts
-