Repository: oozie
Updated Branches:
  refs/heads/master 53b2f26bc -> acdf291ae


OOZIE-3166 Remove tomcat alias from AG_Install.twiki: To use a Self-Signed 
Certificate part (kmarton via andras.piros)


Project: http://git-wip-us.apache.org/repos/asf/oozie/repo
Commit: http://git-wip-us.apache.org/repos/asf/oozie/commit/acdf291a
Tree: http://git-wip-us.apache.org/repos/asf/oozie/tree/acdf291a
Diff: http://git-wip-us.apache.org/repos/asf/oozie/diff/acdf291a

Branch: refs/heads/master
Commit: acdf291aef48fd0f9a5b0e3270afacb7ee4a1543
Parents: 53b2f26
Author: Andras Piros <andras.pi...@cloudera.com>
Authored: Wed Jan 24 10:20:29 2018 -0300
Committer: Andras Piros <andras.pi...@cloudera.com>
Committed: Wed Jan 24 10:20:29 2018 -0300

----------------------------------------------------------------------
 docs/src/site/twiki/AG_Install.twiki | 8 ++++----
 release-log.txt                      | 1 +
 2 files changed, 5 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/oozie/blob/acdf291a/docs/src/site/twiki/AG_Install.twiki
----------------------------------------------------------------------
diff --git a/docs/src/site/twiki/AG_Install.twiki 
b/docs/src/site/twiki/AG_Install.twiki
index 508949d..8f331e4 100644
--- a/docs/src/site/twiki/AG_Install.twiki
+++ b/docs/src/site/twiki/AG_Install.twiki
@@ -722,23 +722,23 @@ match; =password= is the default.
 
 For example, if your Oozie server was at oozie.int.example.com, then you would 
do this:
 <verbatim>
-keytool -genkeypair -alias tomcat -keyalg RSA -dname 
"CN=oozie.int.example.com" -storepass password -keypass password
+keytool -genkeypair -alias jetty -keyalg RSA -dname "CN=oozie.int.example.com" 
-storepass password -keypass password
 </verbatim>
 If you're going to be using Oozie HA, it's simplest if you have a single 
certificate that all Oozie servers in the HA group can use.
 To do that, you'll need to use a wildcard on the subdomain it belongs to:
 <verbatim>
-keytool -genkeypair -alias tomcat -keyalg RSA -dname "CN=*.int.example.com" 
-storepass password -keypass password
+keytool -genkeypair -alias jetty -keyalg RSA -dname "CN=*.int.example.com" 
-storepass password -keypass password
 </verbatim>
 The above would work on any server in the int.example.com domain.
 
 2. Run the following command (as the Oozie user) to export a certificate file 
from the keystore file:
 <verbatim>
-keytool -exportcert -alias tomcat -file path/to/anywhere/certificate.cert 
-storepass password
+keytool -exportcert -alias jetty -file path/to/anywhere/certificate.cert 
-storepass password
 </verbatim>
 
 3. Run the following command (as any user) to create a truststore containing 
the certificate we just exported:
 <verbatim>
-keytool -import -alias tomcat -file path/to/certificate.cert -keystore 
/path/to/anywhere/oozie.truststore -storepass password2
+keytool -import -alias jetty -file path/to/certificate.cert -keystore 
/path/to/anywhere/oozie.truststore -storepass password2
 </verbatim>
 You'll need the =oozie.truststore= later if you're using the Oozie client (or 
other Java-based client); otherwise, you can skip
 this step.  The =storepass= value here is only used to verify or change the 
truststore and isn't typically required when only

http://git-wip-us.apache.org/repos/asf/oozie/blob/acdf291a/release-log.txt
----------------------------------------------------------------------
diff --git a/release-log.txt b/release-log.txt
index 38e4da2..7e42c7f 100644
--- a/release-log.txt
+++ b/release-log.txt
@@ -1,5 +1,6 @@
 -- Oozie 5.0.0 release (trunk - unreleased)
 
+OOZIE-3166 Remove tomcat alias from AG_Install.twiki: To use a Self-Signed 
Certificate part (kmarton via andras.piros)
 OOZIE-2775 Oozie server does not stop if there is an exception during service 
initalization at startup (asasvari) 
 OOZIE-3145 >git status< should be clean after >mvn test< was called (kmarton 
via gezapeti)
 OOZIE-3162 amend Precommit build fails to add comment to JIRA (asasvari)

Reply via email to