1 Reply Latest reply on Feb 18, 2010 8:26 AM by koraycetinbas

    JBoss 5.0.0 configuration with SSL

      Hi,

      I am using JBoss 5.0.0 for the first time and confusing problem in configuring it. So, please tell me steps involved in JBoss 5.0.0 configuraion

      Also tell me steps to configure SSL with JBoss 5.0.0.

      Please reply my request as soon as possible. It is urgent.

      Regards,

      bc0404000410

        • 1. Re: JBoss 5.0.0 configuration with SSL

          Hi there,

           

          Although the answer is not %100 in my knowledge, i will try to help.

          The first thing you need to do is to generate a keystore file for yourself. Java has its own keytool for that so you should have no problem generating one.

           

          After that you need to update your server.xml file that resides under server\default\deploy\jboss-web.deployer directory.

          You need to add a new section like that one

           

                   <Connector 
                     port="8443" minSpareThreads="5" maxSpareThreads="75"
                     enableLookups="true" disableUploadTimeout="true" 
                     acceptCount="100"  maxThreads="200"
                     scheme="https" secure="true" SSLEnabled="true"
                     keystoreFile="D:/jboss-portal-2.7.2/server/default/conf/sonkeystore" keystorePass="123456"
                     clientAuth="false" sslProtocol="TLS"/>
          

           

          Please keep in mind that keystore file location and password are stored under this file.

          You can also delete http connecter defined in the same file in order to prevent http connections.

           

          That is all as far as i know

           

          Hope this helps

           

          --

          Koray Cetinbas