5.1.6.3 Registering OAM TAP Partners
OAM-OAA-TAP
OAM-OUA-TAP
In order for the installation to create these agents, you must first create TAP partners in OAM.
Registering OAA as a TAP Partner in OAM
The OAM-OAA-TAP
OAM integration agent, along with an OAM
Authentication Module (OAA-MFA-Auth-Module
), Authentication Scheme
(OAA-MFA-Scheme
), and Policy (OAA_MFA-Policy
)
are created during installation. These components allow OAM administrators to
protect applications with OAM and OAA multi-factor authentication. For example, a
user accesses an application protected with the OAA_MFA-Policy
, and
after successful authentication in OAM, is then challenged with a second factor for
multi-factor authentication via OAA.
OAM-OAA-TAP
as a TAP partner:
- On the OAM server, launch a terminal window and enter the
following
command:
The output will look similar to the following:cd $OAM_ORACLE_HOME/oracle_common/common/bin ./wlst.sh
Initializing WebLogic Scripting Tool (WLST) ... Welcome to WebLogic Server Administration Scripting Shell Type help() for help on available commands wls:/offline>
- Connect to the OAM Administration Server as
follows:
The output will look similar to the following:connect ('weblogic','<password>','t3://<OAM_AdminServer_Host>:<OAM_AdminServer_Port>')
Successfully connected to Admin Server "AdminServer" that belongs to domain "oam_domain". Warning: An insecure protocol was used to connect to the server. To ensure on-the-wire security, the SSL port or Admin port should be used instead. wls:/oam_domain/serverConfig/>
- Run the following command to register the OAA TAP
partner:
where :registerThirdPartyTAPPartner(partnerName="OAM-OAA-TAP", keystoreLocation="<path_to_keystore>", password="<keystore_password>", tapTokenVersion="v2.0", tapScheme="TAPScheme", tapRedirectUrl="<redirect_url>")
<path_to_keystore>
is the location and file name of the keystore to generate.<keystore_password>
is the password to create for the keystore generated.<redirect_url>
is the HTTP or HTTPS URL that you access OAM with at the front end. For example, if you access OAM viahttps://ohs.example.com
, then settapRedirectUrl
to any URL that is reachable underhttps://ohs.example.com
. The URL must be one that returns a 200 OK response when accessed.
The output will look similar to the following:registerThirdPartyTAPPartner(partnerName="OAM-OAA-TAP", keystoreLocation="/tmp/OAMOAAKeyStore.jks", password="password", tapTokenVersion="v2.0", tapScheme="TAPScheme", tapRedirectUrl="https://ohs.example.com/oam/pages/login.jsp")
In the example above a keystoreRegistration Successful wls:/oam_domain/serverConfig/>
/tmp/OAMOAAKeyStore.jks
will be generated. . - Copy the
OAMOAAKeyStore.jks
to the <WORKDIR> on the <INSTALL_HOST>. See, Installation Host Requirements.
Registering OUA as a TAP Partner in OAM
Note:
If you are performing an installation without OUA, you can ignore this section.The OAM-OUA-TAP
agent, along with OAM OUA Policies also created
during installation, is used by Oracle Universal Authenticator so users can login to
their devices using OAM and a second factor from OAA.
OAM-OUA-TAP
as a TAP partner:
- In the same WLST session as above, run the following command to
register the OUA TAP
partner:
where :registerThirdPartyTAPPartner(partnerName="OAM-OUA-TAP", keystoreLocation="<path_to_keystore>", password="<keystore_password>", tapTokenVersion="v2.0", tapScheme="TAPScheme", tapRedirectUrl="<redirect_url>")
<path_to_keystore>
is the location and file name of the keystore to generate.<keystore_password>
is the password to create for the keystore generated.<redirect_url>
is the HTTP or HTTPS URL that you access OAM with at the front end. For example, if you access OAM viahttps://ohs.example.com
, then settapRedirectUrl
to any URL that is reachable underhttps://ohs.example.com
. The URL must be one that returns a 200 OK response when accessed.
The output will look similar to the following:registerThirdPartyTAPPartner(partnerName="OAM-OUA-TAP", keystoreLocation="/tmp/OAMOUAKeyStore.jks", password="password", tapTokenVersion="v2.0", tapScheme="TAPScheme", tapRedirectUrl="https://ohs.example.com/oam/pages/login.jsp")
In the example above a keystoreRegistration Successful wls:/oam_domain/serverConfig/>
/tmp/OAMOUAKeyStore.jks
will be generated. - Copy the
OAMOUAKeyStore.jks
to the <WORKDIR> on the <INSTALL_HOST>. See, Installation Host Requirements. - Run the following command to exit wlst:
exit()