Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

How to disable JDK installation when using Cloudera Director

avatar
Visitor

Hi,

 

I am using Cloudera Director for deploying CDH in AWS. But it installed JDK 1.7 by default. Is there a switch to disable that in Cloudera Director configuration files?

 

- Sameer

1 ACCEPTED SOLUTION

avatar
Expert Contributor

There is, actually! In the cloudera-manager section, you can set javaInstallationStrategy to NONE:

 

...
cloudera-manager {

    javaInstallationStrategy: NONE
    ...
}

Keep in mind that you'll need to install Java yourself, either by including it with your AMI of choice or using a bootstrap script. If you use a bootstrap script, you may be interested in this instance bootstrap script sample, which will install Java 8 on your Cloudera Manager/cluster.

View solution in original post

2 REPLIES 2

avatar
Expert Contributor

There is, actually! In the cloudera-manager section, you can set javaInstallationStrategy to NONE:

 

...
cloudera-manager {

    javaInstallationStrategy: NONE
    ...
}

Keep in mind that you'll need to install Java yourself, either by including it with your AMI of choice or using a bootstrap script. If you use a bootstrap script, you may be interested in this instance bootstrap script sample, which will install Java 8 on your Cloudera Manager/cluster.

avatar
Visitor

Thank you Mike! I have a custom AMI with JDK pre-installed.