Macromedia live cycle 7.2 매뉴얼

다운로드
페이지 123
Adobe LiveCycle
Configuring SSL on JBoss
Installing and Configuring LiveCycle for JBoss
 Configuring SSL on JBoss     73
To create an SSL credential: 
1. From a command prompt, navigate to [appserver_root]/server/all/svcnative.
2. Enter the following command:
[JAVA_HOME]/bin/keytool -genkey -v -alias ads-credentials -keyalg RSA
-keystore "ads-ssl.jks" -validity 3650 -storepass store_password 
-keypass key_password -dname "CN=User ID, OU=Group Name, O=Company Name,
L=City Name, S=State, C=Country Code"
Note:
You must replace 
[JAVA_HOME]
 with the directory where the JDK is installed, and replace the 
text in bold with values that correspond with your environment.
The keystore file is created in the [appserver_root]/server/all/svcnative directory. 
 
Configuring SSL on JBoss
You can enable SSL on the application server by editing the files indicated in this section. When SSL is 
configured, you must manually start JBoss.
To enable SSL on JBoss:
1. In a text editor, open the jacorb.properties file from the [appserver_root]/server/all/conf directory and 
edit the SSL configuration section so that it contains the following text:
#########################
### SSL Configuration ###
#########################
# the qualified classname of the ssl socket factory class
jacorb.ssl.socket_factory=org.jacorb.security.ssl.sun_jsse.SSLSocket
Factory
# the qualified classname of the ssl server socket factory class
jacorb.ssl.server_socket_factory=org.jacorb.security.ssl.sun_jsse.
SSLServerSocketFactory
# The name and location of the keystore. This should be absolute
# to the directory where this property file resides.
#jacorb.security.keystore=c:/jboss-3.2.5/server/all/svcnative/
ads-ssl.jks
jacorb.security.keystore=<--replace with absolute path of ads-ssl.jks-->
jacorb.security.keystore_password=yourSSLpassword
# trusted ca certs are also in the same keystore
jacorb.security.jsse.trustees_from_ks=on
jacorb.security.support_ssl=on
#client side ssl supported or enforced?
jacorb.security.ssl.client.supported_options=60
jacorb.security.ssl.client.required_options=0
#server side ssl supported or enforced?
jacorb.security.ssl.server.supported_options=60
jacorb.security.ssl.server.required_options=60
2. Save the jacorb.properties file.