<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Java 8 on CDH cluster using Cloudera director (AWS) in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42686#M34037</link>
    <description>&lt;P&gt;Perfect. Exactly what I was looking for. Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will take and put java in an S3 bucket as suggested below as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;</description>
    <pubDate>Fri, 08 Jul 2016 04:44:42 GMT</pubDate>
    <dc:creator>gardella</dc:creator>
    <dc:date>2016-07-08T04:44:42Z</dc:date>
    <item>
      <title>Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42658#M34034</link>
      <description>&lt;P class="p1"&gt;We require java 8 on the CDH cluster to support analytics tools so Cloudera’s suggestion to how to solve this would be very helpful at this point. We have a CDH cluster on AWS that was spun up using Cloudera Director. Unfortunately, that spun up with&amp;nbsp;&lt;SPAN&gt;java 1.6 and 1.7 as Cloudera director automatically installs and points to 1.6&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;The upgrade to 1.8.0_60 isn’t going so smooth. We are going to put that aside for the moment and look to get a cluster spun up with 1.8.0_60 from the start. Is there a suggested path from Cloudera on this? We want to use Cloudera Director to handle the installs and looking for an official Cloudera response as to the use of java 8 as ‘the’ java to use for the cluster.&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;Cloudera’s docs on java 8 upgrade are abstracted out to a high level so obviously there are issues to get past. The issue I am seeing currently is on a data node and trying to spin it up after updating to 1.8.0_60. Screenshot attached.&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2016-07-06 at 4.53.44 PM.png" style="width: 600px;"&gt;&lt;img src="https://community.cloudera.com/t5/image/serverpage/image-id/1890i14BB6748133904D1/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2016-07-06 at 4.53.44 PM.png" alt="Screen Shot 2016-07-06 at 4.53.44 PM.png" /&gt;&lt;/span&gt;﻿&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN class="s1"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 10:28:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42658#M34034</guid>
      <dc:creator>sunilcsc</dc:creator>
      <dc:date>2022-09-16T10:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42675#M34035</link>
      <description>&lt;P&gt;sunilcsc,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It is possible to create a cluster with java 8 through Director.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Deployment (CM) must be created with javaInstallationStrategy set to NONE. This setting tells CM not to install java on the CDH hosts. This property is&amp;nbsp;not exposed through the UI so you need to create the cluster using a conf file.&lt;/P&gt;&lt;PRE&gt;...
cloudera-manager {
   ...
   javaInstallationStrategy: NONE
   ...
}
...&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Java 8 needs to be installed on each instance using a bootstrap script.&lt;/P&gt;&lt;P&gt;Here is an example bootstrap script you can use as a starting point. It removes openjdk, downloads a java 8 rpm, and installs it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;#!/bin/sh

yum remove --assumeyes *openjdk*
yum install --assumeyes wget
cd /opt
wget --no-cookies --no-check-certificate --header "Cookie: gpw_e24=http%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/8u45-b14/jdk-8u45-linux-x64.rpm"
yum install --assumeyes /opt/jdk-8u45-linux-x64.rpm&lt;/PRE&gt;</description>
      <pubDate>Thu, 07 Jul 2016 14:19:48 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42675#M34035</guid>
      <dc:creator>dhan</dc:creator>
      <dc:date>2016-07-07T14:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42680#M34036</link>
      <description>&lt;P&gt;It should be noted that the structure of this script works, but I'd advise you to use a more stable location for that RPM than Oracle's site. Oracle only allows you to download the 2 most recent versions of Java 8 without logging in, which this script does not do. Java 8u45 likely requires this login to download. You could use something like an internal S3 bucket (provided you're on AWS) to host it and download it internally.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Jul 2016 16:27:01 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42680#M34036</guid>
      <dc:creator>Mike Wilson</dc:creator>
      <dc:date>2016-07-07T16:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42686#M34037</link>
      <description>&lt;P&gt;Perfect. Exactly what I was looking for. Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will take and put java in an S3 bucket as suggested below as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks!&lt;/P&gt;</description>
      <pubDate>Fri, 08 Jul 2016 04:44:42 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/42686#M34037</guid>
      <dc:creator>gardella</dc:creator>
      <dc:date>2016-07-08T04:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/44692#M34038</link>
      <description>&lt;P&gt;When will Director support this natively?&lt;/P&gt;</description>
      <pubDate>Sat, 03 Sep 2016 00:51:46 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/44692#M34038</guid>
      <dc:creator>mjarnold</dc:creator>
      <dc:date>2016-09-03T00:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/44694#M34039</link>
      <description>Hi, we currently don't have a scheduled date for this, but we will take&lt;BR /&gt;your request into consideration during prioritization.&lt;BR /&gt;</description>
      <pubDate>Sat, 03 Sep 2016 01:17:51 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/44694#M34039</guid>
      <dc:creator>Vinithra</dc:creator>
      <dc:date>2016-09-03T01:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/57706#M34040</link>
      <description>&lt;P&gt;I wanted to start a new thread but having very similiar question. Why is Cloudera Manager / Director deploying java 1.6 when Cloudera clearly states that the lowest possible supported version is 1.7?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the clarification&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.cloudera.com/documentation/enterprise/5-4-x/topics/cdh_ig_req_supported_versions.html#concept_pdd_kzf_vp" target="_blank"&gt;https://www.cloudera.com/documentation/enterprise/5-4-x/topics/cdh_ig_req_supported_versions.html#concept_pdd_kzf_vp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jul 2017 11:50:17 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/57706#M34040</guid>
      <dc:creator>Tomas79</dc:creator>
      <dc:date>2017-07-20T11:50:17Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/57742#M34041</link>
      <description>Director installs Java 7 by default and has since version 1.0. Is it possible that Java is unexpectedly installed on the instance type that you're using? Director attempts to remove existing Java versions prior to installing its own version, but occasionally certain images have Java installed in ways that Director isn't anticipating.&lt;BR /&gt;&lt;BR /&gt;What version of Director are you using? Assuming that you're using AWS: what region and what AMI are you using to try to bootstrap the cluster?</description>
      <pubDate>Thu, 20 Jul 2017 20:26:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/57742#M34041</guid>
      <dc:creator>Mike Wilson</dc:creator>
      <dc:date>2017-07-20T20:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/57781#M34042</link>
      <description>The latest version of Director (2.4 I assume).&lt;BR /&gt;I really tooked a simple wizard, went throught with 1 master, 3 workers, 1 gateway, installed the cluster and checked the java in every host (1.6)&lt;BR /&gt;AMI Centos 7, tried region eu-west-1, us-east-1.</description>
      <pubDate>Fri, 21 Jul 2017 09:45:14 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/57781#M34042</guid>
      <dc:creator>Tomas79</dc:creator>
      <dc:date>2017-07-21T09:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: Java 8 on CDH cluster using Cloudera director (AWS)</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/57927#M34043</link>
      <description>Can you give me the exact AMI IDs that you are using to try out?</description>
      <pubDate>Mon, 24 Jul 2017 15:23:41 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Java-8-on-CDH-cluster-using-Cloudera-director-AWS/m-p/57927#M34043</guid>
      <dc:creator>Mike Wilson</dc:creator>
      <dc:date>2017-07-24T15:23:41Z</dc:date>
    </item>
  </channel>
</rss>

