Created on 09-15-2016 04:32 PM - edited 09-16-2022 03:39 AM
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
Created 09-15-2016 04:37 PM
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.
Created 09-15-2016 04:37 PM
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.
Created 09-15-2016 04:44 PM
Thank you Mike! I have a custom AMI with JDK pre-installed.