Edit the server.xml file by activating and inactivating sections and adding properties for SSL.
Follow these steps:
gm_directory\Server\eurekify-jboss\server\eurekify\deploy\jboss-web.sar
<!-- <Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" /> -->
You can now edit this tag.
keystoreFile="${jboss.server.home.dir}/conf/server.keystore" keystorePass="newPassword"
Specifies the full pathname of the keystore file.
Specifies the keystore password.
The <Connector port> tag now appears as follows:
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="${jboss.server.home.dir}/conf/server.keystore"
keystorePass="newPassword" />
<Connector protocol="HTTP/1.1" URIEncoding="UTF-8" port="8080" address=${jboss.bind.address}"
connectionTimeout="20000" redirectPort="8443" />
Default port 8080 is blocked.
The server.xml file is edited.
| Copyright © 2012 CA. All rights reserved. |
|