Install Oracle Access Management 12c Sandbox Environment

Introduction

This tutorial shows you how to install Oracle Access Management 12c software for a sandbox environment.

This is the fourth tutorial in the series Creating an Oracle Access Management 12c Sandbox Environment for Oracle Advanced Authentication and they should be read sequentially.

Objective

To install Oracle Access Management 12c software.

Prerequisites

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

All the tasks in this tutorial should be performed on the OAM linux server (oam.example.com). You must follow the System Requirements and Certification and ensure all the required OS packages are installed before starting this tutorial.

This tutorial assumes you have created an OS user:group called oracle:oinstall.

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 8uXXX, download the latest x64 Compressed Archive (for example jdk-8uXXX-linux-x64.tar.gz).
  3. Move the downloaded software to a staging directory, for example /stage/JDK.

Create the Required Directories

  1. Launch a terminal window as oracle and create the directories where the OAM software will be installed.

    mkdir -p /u01/app/oracle
    mkdir -p /u01/app/oracle/product
    mkdir -p /u01/app/oraInventory
    chown -R oracle:oinstall /u01/app/oracle
    chown -R oracle:oinstall /u01/app/oraInventory
    chmod -R 775 /u01
    

Install Oracle JDK

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

    cp /stage/JDK/jdk-8uXXX-linux-x64.tar.gz /u01/app/oracle/product/
    cd /u01/app/oracle/product
    tar -zxvpf jdk-8uXXX-linux-x64.tar.gz
    mv jdk1.8.0_XXX jdk
    rm jdk-8uXXX-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_XXX"
    Java(TM) SE Runtime Environment (build 1.8.0_XXX-XXX)
    Java HotSpot(TM) 64-Bit Server VM (build 25.XXX-XXX, 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/middlewareidm
    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/middlewareidm
    4 Installation Type Collocated 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

Install the Latest OAM 12c Bundle Patch

In order for OAM to have the latest policies required, and for Oracle Universal Authenticator to work, you must install the OAM April 24 bundle patch or later.

View Document ID 736372.1 Support OAM Bundle Patch Release History, on My Oracle Support for the latest bundle patch and installation instructions. Note: You must install the OAM bundle patch and the prerequisite patches, not the Stack Bundle Patch (as this can only be applied to running OAM domains). The Readme in the Documentation column of the 12.2.1.4.x OAM Bundle Patch History table provides full information of the prerequisite patches required.

Next Tutorial

Configure Oracle Unified Directory for Oracle Access Management 12c Sandbox Environment.

Feedback

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

Acknowledgements

More Learning Resources

Explore other labs on docs.oracle.com/learn or access more free learning content on the Oracle Learning YouTube channel. Additionally, visit education.oracle.com/learning-explorer to become an Oracle Learning Explorer.

For product documentation, visit Oracle Help Center.