1 2 3 4 5 6 7 8 9 10 11 12 13 14
|
Description: Disables the shutdown port (8005) by default
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/conf/server.xml
+++ b/conf/server.xml
@@ -19,7 +19,7 @@
define subcomponents such as "Valves" at this level.
Documentation at /docs/config/server.html
-->
-<Server port="8005" shutdown="SHUTDOWN">
+<Server port="-1" shutdown="SHUTDOWN">
<Listener className="org.apache.catalina.startup.VersionLoggerListener" />
<!-- Security listener. Documentation at /docs/config/listeners.html
<Listener className="org.apache.catalina.security.SecurityListener" />
|