Using JAVA_FIX option while installing Apigee Edge in Private Cloud

I am trying to install Apigee Edge on a VM. Found the following step in (Step 10) Apigee Edge Documentation

The installer checks to see that you have Java 1.8 installed. If you do not, it installs it for you. Use the JAVA_FIX option to specify how to handle Java installation. JAVA_FIX takes the following values:

  • I: Install OpenJDK 1.8 (default)
  • C: Continue without installing Java
  • Q: Quit. For this option, you have to install Java yourself.

How do I specify this option while running the script. I am trying to use Ansible and wanted the option I to be default without prompting. 

Solved Solved
0 1 115
1 ACCEPTED SOLUTION

You can pass JAVA_FIX value while running bootstrap.sh similar to username and password. If passed, bootstrap shouldn't prompt for JAVA_FIX. Example:

sudo bash /tmp/bootstrap_4.52.00.sh apigeeuser=uName apigeepassword=pWord JAVA_FIX=C

 

View solution in original post

1 REPLY 1

You can pass JAVA_FIX value while running bootstrap.sh similar to username and password. If passed, bootstrap shouldn't prompt for JAVA_FIX. Example:

sudo bash /tmp/bootstrap_4.52.00.sh apigeeuser=uName apigeepassword=pWord JAVA_FIX=C