How to install SSL?

I am using oc4j as app server and apache as web server.
I read from doc that we need the module mod_ssl for using ssl in apache.
(According to http://technet.oracle.com/docs/products/ias/doc_library/1022doc_otn/index.htm)
I have searched for this file in binary release and also in src files of apache but I can't find this file. Where can I find this file?
THX

If you are on unix, mod_ssl.so file will be in $ORACLE_HOME/Apache/Apache/libexec directory. If you on NT, check corresponding directory, file name will be mod_ssl.dll (?).
Hope you are on 9iAS Release 1.0.2.2 and NOT Rel. 2. I read theat in release 2, 9iAS no longer uses mod_ssl.
sorry I forgot to say my apache is version 1.3.26

Similar Messages

  • How to install SSL certificate on the second ACE in the HA pair

    Hi,
    I'm struggling to figure out how to install a certificate (.p7b and .crf) on my second ACE in a HA pair.
    On ACE01 i generated a CSR and gave the details to our SSL provider, they provided the certificates and i imported them. All good there.
    How can i install the same SSL on ACE02 if i haven't generated a CSR on my backup devicde, or do i generate a CSR and import the same certificate?
    Since bringing the ACE's into HA all contexts have sync'd and the backup ACE is in 'hot standby' state. But one context fails the sync and i think this is because the SSL certificate is not installed correctly on the second ACE02.
    Anybody got any ideas, suggestions?
    Cheers

    Hi,
    If you already have the cert and key on the Active ACE, then you just need to export them using "crypto export ..." command from Active ACE and then import to the standby ACE using "crypto import ..."
    Regards,
    Siva

  • How to install SSL certificate on Mac OS X 10.8.3 Server 2.2

    Hi,
    In eairler versions of !0.8 / OS X Server 2.2 your where able to install a purchased SSl certificate in the
    Hardware >> Profile Manager Server >> Settings >> SSL Certificate Edit
    I've just done a clean install of 10.8.3 and OS X Server 2.2 but there is no  "SSL Certificate Edit" available.
    How do I install my purchased certificate?
    Thanks,
    John

    sorry for hijacking but I have a related question to do with certificates.
    I had to set up virtual domains manually instead of through the GUI and the server ssl site is now locked to a certificate that is about to expire and no longer needed, I can't change the certificate in the web gui because it was created manually, I can't delete the certificate because it is assigned to the server ssl website and I can't manually edit the conf files to point to a different certificate becasue it breaks it, any ideas?

  • How to install SSL Certificates automatically in Client machine

    Hi All
           I have installed Certificates for SSL in Planning server machine for Planning Web services.While connneting to Server through excel-addin from client machine it is not connecting
     Error is bleow:
    "The underlying connection was closed : could not establish trust relationship for the SSL/TLS secure channel" and then getting the following error
    "The PerformancePoint Server System is currently unavailable"
    I got it this is due to Certification not installed in client machine.
    So i tried to install certificate through IE web browser ..i typed webservices links ..i.e https://servername:443 in address box
    ..not admin console link.Because if i connect to Admin console then i connect to Planning server it is  not showing me the dialog box  " Security Alert "
    So typed direcly  webservices in address box.Then "Security Alert" dialog box opened ,In that i clicked "View Certificate" button and installed manually.Then this problem solved.
    But i want to check this is a way to install cerficate in the client machine or there is any other way to do it automatically...
    Please help me to solve this..
    Thanks
    Abdul

    Abdul,
    The problem seems to be that the certificate authority that created your certificate is no trusted by Windows.... That process of installing the root certificate in the clients machines should not be needed if the ceritifcate is obtained from the right ceritifcate authority...
    Where did you purchased your certificate from?
    Regards,
    Pablo Barvo - MSFT

  • How to install SSL certificate on OSX 10.9.5?

    Hello,
    I purchased an SSL certificate from RapidSSL for my website. Somehow I am supposed to install this on my Mac but they are not able to provide me with instructions (great service). Can anyone help me?
    Thanks!

    sorry for hijacking but I have a related question to do with certificates.
    I had to set up virtual domains manually instead of through the GUI and the server ssl site is now locked to a certificate that is about to expire and no longer needed, I can't change the certificate in the web gui because it was created manually, I can't delete the certificate because it is assigned to the server ssl website and I can't manually edit the conf files to point to a different certificate becasue it breaks it, any ideas?

  • How can i install SSL on J2EE?

    i installed a J2EE patch 24 and J2EE is running with http but now i was demanded to install https on this J2EE .
    During the installation i was asked for a https port , but when i try to reach the J2EE via this port it does not work.
    Is there any documentation ,and if where can i find it ,about how to install SSL on J2EE ? (WAS basis 620)
    i am thankful for any hint.
    best regards
    britta

    Hi Britta,
    you can find documentation about how to install SSL on the J2EE Engine in the Administration Manual (should be part of the installation!) -> chapter Services Administration Reference -> SSL Service -> Critical Information and Troubleshooting Tips.
    You'll also need the SAP Java Cryptographic Toolkit package that corresponds to your SAP J2EE Engine release. You can get it from the SAP Service Marketplace at service.sap.com/download under Download -> SAP Cryptographic Software.
    Hope that helps!

  • How to install and use certificates on client?

    Hello everyone, and first of all sorry for my poor, italian-accented english.
    I have some questions about SSL and certificates. I'm developing a java desktop application, which should connect to a https server, authenticate with a previously downloaded certificate and then gain access. Some specs: I work on a Windows Xp Pro machine with Netbeans 6.1 and jdk 1.6.0_07.
    Now, I'm using HttpUnit libraries to connect the first time, login with basic authentication and download the certificate, but after i get it I'm not sure how to install the certificate (using java, it has to be an automated procedure) on the client machine and then how to use it to connect to the server. I've tried to use the code I've found here and after using it I can see the certificate inside Control Panel > Java > Securiy > Certificates > System, but I'm not sure I'm installing it in the correct way and/or in the correct path.
    Everytime I try to connect to the server I get back a HTTP 403 forbidden exception. Does someone know any tutorials/howtos/example codes to suggest to me? Or could tell me what's the right installation procedure using java? Any help would be very appreciated.
    Thanks in advance
    K.

    After banging my head on my keyboard for a lot of hours, I've got it!
    I was trying to install a *.pfx certificate, and that was bad. I tried to convert it in *.p12 or *.cer but that workaround didn't work. Finally I've found a small code to use a *.pfx certificate without installing it and... it works! No more 403 errors now, I can get that damn page. :)
    Here is the class I've used (I've found it somewhere googling around but I've lost the link, sorry. Anyway, I've modified it a little)
    import java.io.BufferedReader;
    import java.io.FileInputStream;
    import java.io.InputStreamReader;
    import java.net.*;
    import java.security.KeyStore;
    import javax.net.*;
    import javax.net.ssl.*;
    public class ConnectWithPfx {
       static final int HTTPS_PORT = 443;
       public static void main(String argv[]) throws Exception {
          // Get a Socket factory
          SocketFactory factory = SSLSocketFactory.getDefault();
          SSLSocketFactory socketFactory = null;
          try {
                KeyStore keyStoreKeys;
                KeyManagerFactory keyMgrFactory;
                SSLContext sslContext;
                keyStoreKeys = KeyStore.getInstance("PKCS12");               
                keyStoreKeys.load(new FileInputStream("mycertificate.pfx"),"certpassword".toCharArray());
                keyMgrFactory = KeyManagerFactory.getInstance("SunX509");
                keyMgrFactory.init(keyStoreKeys, "certpassword".toCharArray());
                sslContext = SSLContext.getInstance("SSL");
                sslContext.init(keyMgrFactory.getKeyManagers(), null, null);
                socketFactory = sslContext.getSocketFactory();
                Socket socket2 = factory.createSocket("www.my.host", HTTPS_PORT);
          } catch (Exception e) {
                e.printStackTrace();
            URL url = new URL("https://www.my.host/mypage");      
            // Open a HTTP connection to the URL assigning the SocketFactory we created before
            HttpsURLConnection conn = null;
            conn.setDefaultSSLSocketFactory(socketFactory);
            conn = (HttpsURLConnection) url.openConnection();              
            // Allow Inputs
            conn.setDoInput(true);
            // Allow Outputs
            conn.setDoOutput(true);
            // Don't use a cached copy.
            conn.setUseCaches(false);
            conn.setRequestProperty("Connection", "Keep-Alive");
            BufferedReader in = new BufferedReader(new InputStreamReader(conn.getInputStream()));
            String line;
            String response = "";
            while ((line = in.readLine()) != null) {
                response += line+"\n";
            System.out.println(response);
    }Hope this could be useful for someone else. Thanks to everyone who read or replied to my thread. :)

  • How to install & confgiure Oracle9i on Veritas Cluster Server

    Hi,
    I want to know how to install oracle9i on Veritas Cluster Server having OS as Solaris 9. Also How to configure oracle in VCS so that it can be failover.
    I really appreciate the replies.
    Thanks,
    Shrikant

    I want to install following component
    Oracle 9i form server & report server
    Oracle HTTP Server in SSL mode
    Oracle As Web Cache
    Regards
    Arvind

  • Plugins from web and how to install?

    I have found on the web a plugin called Portraitlightroom and want to install to my lightroom3.5, but I'm new to this program use and have not found how to install the program that I downloaded to my desktop. Help

    Hi Sri,
    great that it is working! Thats what you told me, isnt it?
    About the setting of Hostname verification the follwoing.
    Whe you, as a consumer, invoke an external website, it could be that someone has hacked the website-address and redirects your request to a dummy site that possibly resembles the original one. In that case, the real server name of that fake server will probably be not the same as the one you expect.
    Because you have earlier exchanged the right certificates with the provider you can be sure that the request will come from that specific server.
    So, enabling hostname verification gives an extra check to prevent the so called man-in-the-middle attack.
    Ok, so far so good.
    Now the reality.
    If providers are not strickt in using certificates that belong one-to-one to their servers, you can have a problem in enablng hostname verification.
    If necessary you can write your own hostname verification Java class to be able to support specific SSL certificates that you still trust.
    Regards,
    Jos

  • Install SSL certificate - OS X Server 10.8.2

    Greeting All,
    I am using OS X Server 10.8.2 with Server.app 2.2 and self-signed SSL sertificate. And I try use CA form Verisign.
    I already success create CSR and get trial SSL certificate form Verisign. But I found I can't install SSL certificate correct and made it use in Profile Manager 2. When I check Profile Manager 2 in Server.app 2.2. I only see self-signed intermediate CA.
    I check Apple on line guide and support site of Verisign but not found any latest guide of how to install it in Server.app. Any advice is welcome.
    Thanks,
    Spin

    If you purchased the SSL certificate, you have to convert the certificate to "PEM"
    https://www.sslshopper.com/ssl-converter.html

  • How to install PDF with XDB on APEX 4.2.2

    Hi,
    does anyone know a "how to install PDF Output" using XDB instead of Apache or APEX Listener on APEX 4.2.2 Please give me the link.
    I tried to install APEX Listener but I always got errors so I came back to XDB. If there is an easy way to install the Listener please send me the link.
    Thank you and best regards
    Siegwin

    i wrote an article about installing listener but then the latest version of listener at time was 1.x . check the following
    Vishal's blog: Installing SSL enabled APEX 4.1 with development environment and APEX Listener on Weblogic and standalone
    listener now is at 2.x and a few steps such as configuration of properties have changed. you no longer have to create users such as adminlistener and the listenerAdmin page isnt there anymore.
    read the above and tell me the exact problem you have and i might help you better.
    read Contents . this is oracle's documentation for listener configuration. this is good. let me know if you need some help in understanding some step in this
    once listener is configured, configuring it for pdf download is very easy.
    let me know if this answers your query in the current thread
    Regards,
    Vishal
    Oracle APEX 4.2 Reporting | Packt Publishing
    Vishal's blog
    Message was edited by: VishalPathak(OBIEE-APEX)

  • How to Install CA Certificates in B2B

    Hello
    I am new to B2B and I got CA and trusted certificates from our client. I used KeyStore tool and loaded all CA and trusted certificates and generated .jks file and used in the B2B certification section. With this I am able to connect to the client server and able to send the files successfully. But Client saying that they are not able to connect to my server and getting below error. They are saying that to install CA and trusted certificates. Can anybody guide us how to install them?
    HTTPClientMethodService resumed with error.
    HTTPClientAdapter [GWW_HTTP_CLIENT_ADAPTER_N2-3]
    ServiceStartTime [2015-01-16 14:47:50.37]
    ServiceEndTime [2015-01-16 14:47:50.586]
    SessionToken [GWW_HTTP_CLIENT_ADAPTER_N2-3_HTTPClientAdapter_node3AC2_142144127032096:3845756]
    HTTP Status Code: 404
    HTTP Reason Phrase: Not Found

    Configuring Commercial certificates on weblogic server
    http://weblogictips.wordpress.com/2008/07/27/configuring-commercial-certificates-on-weblogic-server/
    How to debug SSL issues with weblogic server
    http://weblogictips.wordpress.com/2010/05/11/how-to-debug-ssl-issues-with-weblogic-server/
    Steps to create self sign certificates for weblogic server
    http://weblogictips.wordpress.com/2008/07/27/steps-to-create-self-sign-certificates-for-weblogic-server/
    thanks,
    sandeep

  • How to add ssl to webcache  10.1.3

    Hi
    We are running oracle webcache 10.1.3 on Solaris connecting to OracleHTTPServer-->OC4J .Now,We have installed a SSL certificate on oracle wallet.
    When we are trying to access the server from chrome, we get Error 113 (net::ERR_SSL_VERSION_OR_CIPHER_MISMATCH): Unknown error.
    We changed webcache.xml and disabled SSLV2,
    <LISTEN IPADDR="ANY" PORT="443" SSLENABLED="SSL" PORTTYPE="NORM">
    Also changed httpd.conf at OracleHTTPServer,
    <IfModule mod_ossl.c>
    # SSLOptions +StdEnvVars
    SSLOptions ExportCertData StdEnvVars
    </IfModule>
    Still does not work.Any idea how to get SSL up on Webcache 10.1.3.
    Thanks
    AK

    FOR HISTORY
    Oracle does not support wild-carding certificares (wildcards)!!!
    Here is a FAQ from metalink:
    Per Metalink Note:291774.1:
    Question 2:
    Using the same SSL certificate for multiple Name-Based Virtual Hosts is
    sometimes used on the Internet. This is referred to as 'certificate
    sharing', or 'wild-carding certificates', and requires a special
    certificate from the Certificate Authority. Is this supported?
    Answer 2:
    No, sharing certificates for multiple Name-Based Virtual Hosts is not
    supported by Oracle. The use of wildcard certificates could compromise
    security, and are not compatible with OWM. If there is a business need
    for this, please file an Enhancement Request.

  • Any easy way to install SSL certificates

    Hello
    is there a easy to install SSL certificate on ASA, rather than enroll with a public CA?  ASDM has a place to import certificates.  Can I just upload a SSL certificate I got from my CA to ASA, withou setup CA enrollment?  And if yes, how can I generate a SSL certificate request from my ASA 8.2?
    Thanks a lot

    Hi,
    As for generating a certificate signing request, you might want to check the following:
    http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808b3cff.shtml
    HTH

  • Installing SSL certificate on SAP J2EE Engine 6.4

    Hi SDN,
    <b>
    We want to install SSL cetificate on one of our portals. What are the steps to be done? How do we go about this??
    </b>
    regards
    Brahmachaitanya

    Hi,
    Before answering to your doubts,
    Have you tested your SSL as per Page No:26 from the above document.
    If It's positive, then your SSL is fine..no need to worry about anything.
    You can customize the SSL connection across engine and subsequent navigation
    as per page no:17 in the same doc.
    after being done all the above positively
    <i>1) I am not able to find in the Trusted CAs, the private key that i created</i>.
    I'm afraid to answer this.however.... you said "<i>I have also sent the CSR to the Certifiying Authority and I have got the Signed certificate back (i.e. .crt file)."</i>
    So, I assume that your SSL test works fine
    may be you might need to check other section(like Trusted CA ..some other diffrent name) in the same Key Store for your private key info.
    2) I have created the private key once and generated the CSR from it. I have also sent the CSR to the Certifiying Authority and I have got the Signed certificate back (i.e. .crt file). Now please tell me, DO I NEED THE PRIVATE KEY IN THE FUTURE FOR ANY OTHER PURPOSE?????
    You don't have to know about private key in the future.
    You just have to make sure that SSL certificate is appears during navigation in the browser for you to click "Yes". still if you want to know what is your private key, I think You need to try out fresh SSL config in any other system/engine.
    ( to get know more about SSL, visit SAP documentation in my first answer )
    Hope that solves your doubts.

Maybe you are looking for