Hi,
 
I'm in the process of moving a mod_perl application running apache 1.3 in AIX 
to apache 2.2 in RedHat Linux.   I get the SSL input filter read failed error 
when sending a request through the website.
 
Below are the details.
 
Thanks,
 
Sujeeva 
 
Virtual Server error.log
 
Start Apache:
[Wed May 22 12:11:19 2013] [info] Loading certificate & private key of 
SSL-aware server 'wlm6hub5app01-access:443'
[Wed May 22 12:11:19 2013] [info] Configuring server for SSL protocol
[Wed May 22 12:11:19 2013] [warn] RSA server certificate is a CA certificate 
(BasicConstraints: CA == TRUE !?)
[Wed May 22 12:11:19 2013] [warn] RSA server certificate CommonName (CN) 
`wlm6hub5app01-access.com' does NOT match server name!?
[Wed May 22 12:11:21 2013] [info] Loading certificate & private key of 
SSL-aware server 'wlm6hub5app01-access:443'
[Wed May 22 12:11:21 2013] [info] Configuring server for SSL protocol
[Wed May 22 12:11:21 2013] [warn] RSA server certificate is a CA certificate 
(BasicConstraints: CA == TRUE !?)
[Wed May 22 12:11:21 2013] [warn] RSA server certificate CommonName (CN) 
`wlm6hub5app01-access.com' does NOT match server name!?
 
Go to URL from Chrome:
[Wed May 22 12:13:31 2013] [info] [client 172.27.60.129] Connection to child 0 
established (server wlm6hub5app01-access:443)
[Wed May 22 12:13:31 2013] [info] Seeding PRNG with 144 bytes of entropy
[Wed May 22 12:13:31 2013] [info] [client 172.27.60.129] (70014)End of file 
found: SSL input filter read failed.
[Wed May 22 12:13:31 2013] [info] [client 172.27.60.129] Connection closed to 
child 0 with standard shutdown (server wlm6hub5app01-access:443)
[Wed May 22 12:13:31 2013] [info] [client 172.27.60.129] Connection to child 0 
established (server wlm6hub5app01-access:443)
[Wed May 22 12:13:31 2013] [info] Seeding PRNG with 144 bytes of entropy
[Wed May 22 12:13:32 2013] [info] [client 172.27.60.129] (70014)End of file 
found: SSL input filter read failed.
[Wed May 22 12:13:32 2013] [info] [client 172.27.60.129] Connection closed to 
child 0 with standard shutdown (server wlm6hub5app01-access:443)
 
Click Proceed on Chrome to bypass self-signed certificate:
[Wed May 22 12:14:40 2013] [info] [client 172.27.60.129] Connection to child 0 
established (server wlm6hub5app01-access:443)
[Wed May 22 12:14:40 2013] [info] Seeding PRNG with 144 bytes of entropy
[Wed May 22 12:14:40 2013] [info] Initial (No.1) HTTPS request received for 
child 0 (server wlm6hub5app01-access:443)
[Wed May 22 12:14:55 2013] [info] [client 172.27.60.129] (70007)The timeout 
specified has expired: SSL input filter read failed.
[Wed May 22 12:14:55 2013] [info] [client 172.27.60.129] Connection closed to 
child 0 with standard shutdown (server wlm6hub5app01-access:443)
 
 
Virtual Host Configuration file secure.conf:
 
#-------------------------------------------------------------------------
# Secure traffic from the public internet.
#-------------------------------------------------------------------------
<IfDefine SSL>
Listen                  192.168.65.24:21446
<VirtualHost 192.168.65.24:21446>
        UseCanonicalName        on
        ServerName              wlm6hub5app01-access
        # Port used for canonical name only in Apache 1.3.
        # Port was replaced with Listen in Apache 2.0.
        # Port                  443
        DocumentRoot            /home/sseneviratne/rundir/dev/sls
        DirectoryIndex          /perl/menu
        ErrorLog                logs/access/error.log
        CustomLog               logs/access/access.log common
        SSLEngine               on

        SSLCertificateFile      
/home/sseneviratne/rundir/dev/sls/conf/access/snakeoil.crt

        RewriteEngine           on
        RewriteLog              logs/access/rewrite.log
        RewriteLogLevel         1
        RewriteCond             %{REQUEST_FILENAME} !-d
        RewriteRule ^/*(.+)/$   https://%{SERVER_NAME}:%{SERVER_PORT}/$1 
[R=301,L]
        # The rewrite rules are common to all virtual hosts
        Include                 
/home/sseneviratne/rundir/dev/sls/conf/rewrite.conf
        # Set the ssi.com branding variable
        PerlSetVar      SSIBrandingStyle        dataquick
        # Set the date for the Brand-o-matic. Before this date, HTML rendered
        # products will use a brand of ssi. After this date, use mda.
        PerlSetVar      BrandOMaticDate         07/20/2008
        PerlSetVar      DataQuickDate           04/30/2011
</VirtualHost>
</IfDefine>

Reply via email to