This section describes how to enable Google Docs for SkyVault deployed within
WebLogic and using the Lucene search engine.
To enable Google Docs for SkyVault running on WebLogic and using Lucene as the search
engine, you need to add the Google certificate manually using the Keytool Java utility.
-
To download the certificate:
-
Download OpenSSL (for Windows) from OpenSSL. Note: OpenSSL is pre-installed in the Linux and OS operating systems. To verify that you have OpenSSL installed, run the following command: openssl version.
-
Run the following command: openssl s_client -connect docs.google.com:443
-showcerts.
The PEM-format certificate outputs are displayed.
-
From the output displayed, copy the certificate for the wildcard *.google.com
domain to your clipboard including the ----BEGIN CERTIFICATE---- and
----END CERTIFICATE---- parts.
Note: Several certificates are displayed. The certificate you need to copy is the first one that is displayed and has the value CN=*.google.com.
-
Paste the PEM-format certificate text into a new file.
For example, google.com.pem.
-
Convert the PEM-format certificate into DER format using OpenSSL.
For example, openssl x509 -in google.com.pem -out google.com.der -outform DER.
-
Download OpenSSL (for Windows) from OpenSSL.
-
Add the google.com.der certificate to your truststore using the
Keytool Java utility.
keytool -import -file google.com.der -keystore ssl.truststore -storetype JCEKS -alias google.com
- Restart the server.