4 Replies Latest reply on Feb 17, 2009 5:02 AM by qmpeltaty

    JBoss migration 405-->423 SSL problem

    qmpeltaty

      I have upgraded my JBoss application server from 405 to 423. Unfortunately https connection on TCP/8443 is not available after change. I've checked open ports using netstat -a and TCP/8443 has not been listed. I can't set this to TCP/443 couse Apache Web Server use it.

      405 configuration :

      <!-- SSL/TLS Connector configuration using the admin devl guide keystore -->



      423 configuration :

      <!-- SSL/TLS Connector configuration using the admin devl guide keystore -->



      But more confusing is, that i started both 405 and 423 in same time on same machine with configuration above. I've change 423 to work on database copy, set it on same network card but with different internal IP address - 405 on 192.168.1.30 and 423 192.168.1.31 and it works just fine !!!! When i started 423 alone https is not available :(

      Additionally I've checked this 423 configuration on two different machines and it's working fine there.

      What might couse this problem ?

        • 1. Re: JBoss migration 405-->423 SSL problem
          qmpeltaty

          Hmm... configuration details has been deleted during sending post ...

          • 2. Re: JBoss migration 405-->423 SSL problem
            qmpeltaty

            405 configuration :

            Connector port="8443" address="${jboss.bind.address}"
            maxThreads="100" strategy="ms" maxHttpHeaderSize="16384"
            emptySessionPath="true" maxPostSize="0"
            scheme="https" secure="true" clientAuth="false"
            keystoreFile="${jboss.server.home.dir}/conf/ssl/ssl.pfx"
            keystorePass="password" sslProtocol="SSLv3" keystoreType="PKCS12" ciphers="SSL_RSA_WITH_RC4_128_MD5,SSL_RSA_WITH_RC4_128_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA"
            compression="on"
            compressionMinSize="2048"
            noCompressionUserAgents="gozilla, traviata"
            compressableMimeType="text/html,text/xml"



            423 configuration :

            Connector port="8443" address="${jboss.bind.address}"
            maxThreads="100" strategy="ms" maxHttpHeaderSize="16384"
            emptySessionPath="true" maxPostSize="0" SSLEnabled="true"
            scheme="https" secure="true" clientAuth="false"
            keystoreFile="${jboss.server.home.dir}/server/default/conf/ssl/ssl.jks"
            keystorePass="password" keystoreType="JKS" sslProtocol="SSLv3"
            ciphers="SSL_RSA_WITH_RC4_128_MD5,SSL_RSA_WITH_RC4_128_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA"
            compression="on"
            compressionMinSize="2048"
            noCompressionUserAgents="gozilla, traviata"
            compressableMimeType="text/html,text/xml"

            • 3. Re: JBoss migration 405-->423 SSL problem
              peterj

               

              configuration details has been deleted during sending post


              That is what the Code and Preview buttons are for...

              • 4. Re: JBoss migration 405-->423 SSL problem
                qmpeltaty

                I've solved the problem. AJP connector block has been moved under SSL connector block - that made the trick and start to work ;)