System information

104
CONFIGURING AND ADMINISTERING COLDFUSION 9
Using the ColdFusion Server Monitor
Last updated 2/21/2012
cf_root\lib (in the server configuration)
or
cf_root/WEB-INF/cfusion/lib (in the J2EE configuration).
Modify the value to true in the following code:
<var name='ismonitoringserverenabled'><boolean value='false'/></var>
Jetty.xml
Modify Jetty.xml only if you have to change the port or if your connection uses HTTPS protocol.
Go to the following location:
cf_root\lib (in the server configuration)
or
cf_root/WEB-INF/cfusion/lib (in the J2EE configuration).
You can specify the following configurations in the XML file:
Port
MaxThreads
Logging
For connections using HTTPS protocol
1 Open jetty.xml.
2 Remove or comment out the Set Connectors section:
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.nio.SelectChannelConnector">
<Set name="host">0.0.0.0</Set>
<Set name="port">5500</Set>
<Set name="maxIdleTime">300000</Set>
<Set name="Acceptors">2</Set>
<Set name="statsOn">false</Set>
<Set name="lowResourcesConnections">10</Set>
<Set name="lowResourcesMaxIdleTime">5000</Set>
</New>
</Arg>
3 Uncomment the Set SSL Connector section: