Install Oracle Access Management 12c

Introduction

This tutorial shows you how to install Oracle Access Management 12c and associated software.

This is the fourth tutorial in the series Getting Started with Oracle Access Management 12c. Read them sequentially.

Objective

To install Oracle Access Management 12c software.

Prerequisites

To have followed Create an Oracle Database for Oracle Access Management 12c.

Download the Oracle Access Management 12c Software

  1. Launch your browser and navigate to Identity & Access Management Downloads.
  2. Under Identity Management 12cPS4 (12.2.1.4.0), click Oracle and Identity Management 12cPS4.
  3. In the Oracle Software Delivery Cloud page, select Linux x86-64 from the Platforms drop down list.
  4. Click on V998828-01.zip - Oracle Identity and Access Management - 12cPS4 Infrastructure for (Linux x86-64). The download will begin.
  5. Click on V983411-01.zip - Oracle Fusion Middleware 12c (12.2.1.4.0) Identity and Access Management for (Linux x86-64), The download will begin.
  6. After the downloads are complete, move the zip files to a staging directory, for example /stage/OAM12c.

Download the JDK

  1. Navigate to the Java Downloads page.
  2. Under Java SE Development Kit 8uXX > Linux, download the latest x64 Compressed Archive (for example jdk-8u333-linux-x64.tar.gz).
  3. Move the downloaded software to a staging directory, for example /stage/JDK.

Install Oracle JDK

  1. Launch a terminal window as oracle and enter the following command to install the JDK:

    cp /stage/JDK/jdk-8u333-linux-x64.tar.gz /u01/app/oracle/product/
    cd /u01/app/oracle/product
    tar -zxvpf jdk-8u333-linux-x64.tar.gz
    mv jdk1.8.0_333 jdk
    rm jdk-8u333-linux-x64.tar.gz
    
  2. Validate the JDK installation by running the commands below:

    export JAVA_HOME=/u01/app/oracle/product/jdk 
    $JAVA_HOME/bin/java -version
    

    The output should look similar to the following:

    java version "1.8.0_333"
    Java(TM) SE Runtime Environment (build 1.8.0_333-b02)
    Java HotSpot(TM) 64-Bit Server VM (build 25.333-b02, mixed mode)
    
  3. Enter the command vi $HOME/.bash_profile, enter the following variables and save the file:

    export JAVA_HOME=/u01/app/oracle/product/jdk
    export PATH=$JAVA_HOME/bin:$PATH
    
  4. Repeat step 3 to include the JDK variables in the $HOME/.bashrc file. Exit the terminal window.

Install Oracle Identity and Access Management Infrastructure

  1. Launch a terminal window as oracle and enter the following command to check that your PATH is pointing at the correct version of the JDK:

    which java
    

    The output will look similar to the following:

    /u01/app/oracle/product/jdk/bin/java
    
  2. Run the following commands to install Oracle Identity and Access Management Infrastructure:

    cd /stage/OAM12c
    unzip V998828-01.zip
    java -jar fmw_12.2.1.4.0_infrastructure.jar
    
  3. Follow the table below to guide you through the installation screens:

    Step Window Description Choice or Values
    1 Welcome Click Next
    2 Auto Updates Skip Auto Updates
    3 Installation Location Oracle Home: /u01/app/oracle/product/middleware
    4 Installation Type Fusion Middleware Infrastructure
    5 Prerequisite Checks Click Next
    6 Installation Summary Click Install
    7 Installation Progress Click Next
    8 Installation Complete Click Finish

Install Oracle Access Management 12c

  1. Launch a terminal window as oracle and enter the following commands:

    cd /stage/OAM12c
    unzip V983411-01.zip                    
    java -jar fmw_12.2.1.4.0_idm.jar
    
  2. Follow the table below to guide you through the installation screens:

    Step Window Description Choice or Values
    1 Welcome Click Next
    2 Auto Updates Skip Auto Updates
    3 Installation Location Oracle Home: /u01/app/oracle/product/middleware
    4 Installation Type Colocated Oracle Identity and Access Manager(Managed through WebLogic Server)
    5 Prerequisite Checks Click Next
    6 Installation Summary Click Install
    7 Installation Progress Click Next
    8 Installation Complete Click Finish

Next Tutorial

Configure Oracle Access Management 12c.

Feedback

To provide feedback on this tutorial, please contact idm_user_assistance_ww_grp@oracle.com

Acknowledgements