You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2005/03/07 22:58:49 UTC

DO NOT REPLY [Bug 33883] New: - openssl pkcs12 -infile/-outfile bad options in SSL Configuration HOW-TO example

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG�
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=33883>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND�
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=33883

           Summary: openssl pkcs12 -infile/-outfile bad options in SSL
                    Configuration HOW-TO example
           Product: Tomcat 5
           Version: Unknown
          Platform: All
               URL: http://jakarta.apache.org/tomcat/tomcat-5.5-doc/ssl-
                    howto.html
        OS/Version: All
            Status: NEW
          Severity: trivial
          Priority: P2
         Component: Unknown
        AssignedTo: tomcat-dev@jakarta.apache.org
        ReportedBy: jbasney@ncsa.uiuc.edu


On this page, the "Prepare the Certificate Keystore" section has the example:

openssl pkcs12 -export -infile mycert.crt -inkey mykey.key \
                        -outfile mycert.p12 -name tomcat -CAfile myCA.crt \
                        -caname root -chain

However, -infile and -outfile aren't valid options for this command (at least
for OpenSSL 0.9.7d).  The example should use -in and -out:

openssl pkcs12 -export -in mycert.crt -inkey mykey.key \
                        -out mycert.p12 -name tomcat -CAfile myCA.crt \
                        -caname root -chain

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

---------------------------------------------------------------------
To unsubscribe, e-mail: tomcat-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: tomcat-dev-help@jakarta.apache.org