Specifications
© 2013 Adobe Systems Incorporated and its licensors. All rights reserved.
2.
c.
d.
e.
f.
1.
a.
b.
c.
d.
e.
f.
g.
h.
i.
section in this document.gistering a remote instance
In the Register Remote Instance page, enter the admin component port, admin component user
name, and admin component password (user name and password. These details you specified
while installing the Remote Instance Administrator). The default https port is 8443.
Select the HTTPS check box.
Click Submit.
#back to top
Setting up remote start and stop functionality using HTTPS in Server Manager
You can set up start and stop remote instance functionality in Server Manager. To enable this feature, install
Remote Instance Administrator while installing ColdFusion.
Do the following in the remote host.
In the remote host, generate a private key in a keystore file. Provide the details at prompt.
cfroot\jre\bin\keytool -genkeypair -alias certificatekey -keyalg
RSA -validity 7 -keystore keystore.jks
Export the certificate. You can have a self-signed certificate or a certificate from a Certificate
Authority.
cfroot\jre\bin\keytool -export -alias certificatekey -keystore
keystore.jks -rfc -file selfsignedcert.cer
Copy the file created in the remote host to the directory..jks jetty\etc
Open the file.jetty\etc\jetty.xml
Search for the string, and then add the following entry:To add a HTTPS SSL Listener
<Call name="addConnector">
<Arg>
<New class="org.mortbay.jetty.security.SslSocketConnector">
<Set name="Port">8443</Set>
<Set name="maxIdleTime">30000</Set>
<Set name="keystore"><SystemProperty name="jetty.home"
default="." />/etc/server.jks</Set>
<Set name="password">changeit</Set>
<Set name="keyPassword">changeit</Set>
<Set name="truststore"><SystemProperty name="jetty.home"
default="." />/etc/server.jks</Set>
<Set name="trustPassword">changeit</Set>
</New>
</Arg>
</Call>
Update the keystore name, password, key password, and jks file in the entry.
Search for the string, .org.mortbay.jetty.bio.SocketConnector
Update the host with the port number of the remote host.
Restart the jetty server.