Manually editing neo-monitoring.xml and jetty.xml
neo-monitoring.xmlGo to the following
location:
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.xmlModify 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:
For connections using HTTPS protocolOpen jetty.xml.
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>
Uncomment the Set SSL Connector section:
<Call name="addConnector">
<Arg>
<New class="org.eclipse.jetty.server.ssl.SslSelectChannelConnector">
<Set name="host">0.0.0.0</Set>
<Set name="port">5500</Set>
<Set name="maxIdleTime">300000</Set>
<Set name="Acceptors">1</Set>
<Set name="AcceptQueueSize">100</Set>
<Set name="Keystore">"path to keystore"</Set>
<Set name="Password">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
<Set name="KeyPassword">OBF:1u2u1wml1z7s1z7a1wnl1u2g</Set>
<Set name="truststore">"path to keystore"</Set>
<Set name="trustPassword">OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4</Set>
</New>
</Arg>
</Call>
Specify the port and the keystore-related settings.
|
|
|
|
|