Migrate an Oracle E-Business Suite Environment from On Premises: Reduced Downtime Lift and Shift

This chapter covers the following topics:

Overview of Migrating an Oracle E-Business Suite Environment from On Premises: Reduced Downtime Lift and Shift

This chapter describes how you can use Oracle E-Business Suite automation to migrate an Oracle E-Business Suite environment from on-premises while minimizing the downtime required. This is accomplished by creating a standby environment in Oracle Cloud Infrastructure and then promoting that standby to accomplish the "lift and shift". We refer to this as a "reduced downtime lift and shift", due to the reduction of overall downtime compared to the more traditional lift and shift method described in Migrate an Oracle E-Business Suite Environment from On Premises: Traditional Lift and Shift.

The procedure you will use to conduct your reduced downtime lift and shift will differ based on which service you use to run your database, either:

Note: When an environment is migrated using reduced downtime lift and shift, the database user profiles for the APPS, APPLSYS, APPLSYSPUB, EBS_SYSTEM, and APPS_NE users are each set to the EBS_APPS seeded profile.

  1. The EBS_APPS profile is created if it is not already present.

  2. If the EBS_APPS profile is present, Oracle E-Business Suite Cloud Manager ensures it matches the seeded profile definition.

Reduced Downtime Lift and Shift: Oracle Compute Cloud Service

This section describes how you can use Oracle E-Business Suite automation (and in particular, the on-premises Oracle Applications Manager combined with the Oracle E-Business Suite Cloud Manager) to create a standby environment in Oracle Cloud Infrastructure.

Promotion of the standby environment accomplishes a "lift and shift". We refer to this as a "reduced downtime lift and shift", due to the reduction of overall downtime that is required with the more traditional lift and shift method described in Migrate an Oracle E-Business Suite Environment from On Premises: Traditional Lift and Shift.

The standby creation and reduced downtime lift and shift features described here are available for Oracle E-Business Suite Release 12.2 with Database Releases 19c and 12.1.0.2, with the target of Compute.

Overview of Creating a Standby Environment for Compute Services

the picture is described in the document text

You can create a standby of your on-premises Oracle E-Business Suite installation in Oracle Cloud Infrastructure, and promote that standby to accomplish your lift and shift.

An Oracle Applications Manager standby cloud patch must be applied to your application tier and the Oracle E-Business Suite Cloud Backup module must be installed in your database tier. See My Oracle Support Knowledge Document 2517025.1, Getting Started with Oracle E-Business Suite on Oracle Cloud Infrastructure for more information.

The Oracle E-Business Suite Cloud Backup Module is used to introspect the database tier, create a backup of the Database Oracle Home in Oracle Cloud Infrastructure Object Storage and configure Oracle Data Guard on the source database.

The utility rsync is used to transfer the files on the applications tier, and Oracle Data Guard helps create and maintain the standby database. Once the standby environment is created in OCI using an Oracle Cloud Infrastructure Storage bucket to store its objects in a compartment, Oracle E-Business Suite Cloud Manager can manage the standby.

Once the standby environment is created in OCI, you can promote it to production using Oracle E-Business Suite Cloud Manager. The on-premises environment is then retired.

Note: Regarding performing maintenance on environments: you should not perform maintenance on standby environments. If you perform maintenance on a source environment you should re-create your standby environments.

A Standby Environment Promoted to Production

the picture is described in the document text

Topics in this section are:

Prerequisites for Creating a Standby Environment on Compute

Prepare for Creating a Standby Environment on Compute

Follow the steps below to prepare to create a standby environment.

Set Up Certificates for Oracle E-Business Suite Cloud Manager

Oracle E-Business application tier nodes will invoke web services exposed by the Oracle E-Business Suite Cloud Manager. In order for Oracle E-Business Suite application tier nodes to invoke these REST services, they need to establish secure communication using TLS. The application tier nodes use a Java framework to invoke REST APIs, and the Java toolkit establishes the secure handshake after validating the certificate coming from the Cloud Manager. This validation requires that the Java toolkit recognizes the certificate authority (CA) that issued the Cloud Manager certificate.

The certificate status of the Oracle E-Business Cloud Manager load balancer will fall into one of these two categories:

Set Up the Source Application Tier

  1. Ensure that you have set up the certificate as described in Set Up Certificates for Oracle E-Business Suite Cloud Manager.

  2. Ensure that you have applied all required patches listed for "Lift and Shift Oracle E-Business Suite from On-Premises" in My Oracle Support Knowledge Document 2517025.1, Getting Started with Oracle E-Business Suite on Oracle Cloud Infrastructure.

  3. Apply Patch 37470749 to the source application tier using adop.

  4. After completing the adop cycle, run adpreclone.pl on the new run filesystem on the source application tier.

Set Up the Source Database Tier

  1. Ensure that the database is in Archive log mode.

  2. Create wallet and autologin files if the database does not already have them.

    For Database Release 12.1.0.2, ensure that the sqlnet.ora file in the context directory is updated with the correct wallet location. For Database 19c, ensure that the sqlnet.ora files of both the multitenant container database (CDB), NATIVE_TNS_ADMIN/sqlnet.ora, and the pluggable database (PDB), TNS_ADMIN/sqlnet.ora, are updated with the correct wallet location.

    If your database is Release 12.1.0.2, then sample commands are as follows:

    $ sqlplus '/as sysdba'
    SQL> ADMINISTER KEY MANAGEMENT CREATE KEYSTORE '<ORACLE_HOME>/admin/<SID>/<tde_wallet>' IDENTIFIED BY <Wallet_password>;
    SQL> ADMINISTER KEY MANAGEMENT SET KEYSTORE OPEN IDENTIFIED BY <Wallet_password>;
    SQL> ADMINISTER KEY MANAGEMENT SET KEY IDENTIFIED BY <Wallet_password> WITH BACKUP;
    SQL> ADMINISTER KEY MANAGEMENT CREATE AUTO_LOGIN KEYSTORE FROM KEYSTORE '<ORACLE_HOME>/admin/<SID>/<tde_wallet>' IDENTIFIED BY <Wallet_password>;    

    If your database is Release 19c, connect to the CDB. The sample commands are as follows:

    sqlplus '/as sysdba'
    SQL> ADMINISTER KEY MANAGEMENT CREATE KEYSTORE '<ORACLE_HOME>/admin/<CDB_SID>/<tde_wallet>' IDENTIFIED BY <Wallet_password>;
    SQL> ADMINISTER KEY MANAGEMENT SET KEYSTORE OPEN IDENTIFIED BY <Wallet_password> CONTAINER=ALL;
    SQL> ADMINISTER KEY MANAGEMENT SET KEY IDENTIFIED BY <Wallet_password> WITH BACKUP CONTAINER=ALL;
    SQL> ADMINISTER KEY MANAGEMENT CREATE AUTO_LOGIN KEYSTORE FROM KEYSTORE '<ORACLE_HOME>/admin/<SID>/<tde_wallet>' IDENTIFIED BY <Wallet_password>;

    Ensure that the sqlnet.ora files (in $ORACLE_HOME/network/admin and $ORACLE_HOME/network/admin/<context_dir>) have an ENCRYPTION_WALLET_LOCATION entry like below:

    ENCRYPTION_WALLET_LOCATION = (SOURCE=(METHOD=FILE)(METHOD_DATA=(DIRECTORY=<ORACLE_HOME>/admin/<SID>/<tde_wallet>)))
  3. Run adpreclone on the database Oracle home.

    1. On the application tier, source the environment file and run:

      $ $AD_TOP/bin/admkappsutil.pl

      This script will create the appsutil.zip file.

    2. Copy this zip file to the /tmp directory on the database tier.

    3. On the database tier, take a backup and remove the $ORACLE_HOME/appsutil/clone directory.

    4. Change to the Oracle directory:

      $ cd $ORACLE_HOME
    5. Unzip the file:

      $ unzip -o /tmp/appsutil.zip
    6. For Database Release 12.1.0.2, run the script:

      $ $ORACLE_HOME/perl/bin/perl $ORACLE_HOME/appsutil/scripts/<CONTEXT_NAME>/adpreclone.pl dbTier

      For Database 19c, source the PDB_context.env file and then run the script:

      $ $ORACLE_HOME/perl/bin/perl $ORACLE_HOME/appsutil/scripts/<CONTEXT_NAME>/adpreclone.pl dbTier

Install the Oracle E-Business Suite Cloud Backup Module

  1. Install the Oracle E-Business Suite Cloud Backup Module on the database tier node. See: Install the Oracle E-Business Suite Cloud Backup Module for more information.

Steps for a Certificate Issued by a Certification Authority (Conditionally Required)

If you have a valid certificate issued by a Certificate Authority (CA) with a properly DNS-registered, resolvable name, then perform the following:

  1. Obtain the certificate from your certificate authority.

  2. Import the certificate to your source application tier nodes:

    1. Copy the democert.crt file to each application tier node in your source system.

    2. Add the certificate to the keystore following the example commands below, one for each file system:

      $ keytool -import -trustcacerts -keystore /u01/install/APPS/fs1/EBSapps/comn/util/jdk64/jre/lib/security/cacerts -file democert.crt -alias sample2021webentry  
      
      $ keytool -import -trustcacerts -keystore /u01/install/APPS/fs2/EBSapps/comn/util/jdk64/jre/lib/security/cacerts -file democert.crt -alias sample2021webentry

      Note: You might need to grant write permissions to the cacerts file using the command:

      $ chmod u+w <cacerts_file> 

      The write permissions can be revoked after running the above keytool command using:

      $ chmod u-w <cacerts_file>

      If prompted, enter the keystore password. See: The cacerts Certificate File.

      For more information on managing the JDK cacerts file, refer to My Oracle Support Knowledge Document 1367293.1, Enabling TLS in Oracle E-Business Suite Release 12.2.

  3. Stop and start the Oracle E-Business Suite instance.

Steps For a Self-Signed Certificate Using the Cloud Manager Administration Utility (Conditionally Required)

Use the Cloud Manager Administration Utility (ebscmadmin) if you are using a self-signed certificate generated during Cloud Manager configuration and you want to use the FQDN as the web entry point. For configuring self-signed certificates for Cloud Manager URLs with IP address, refer to Manual Steps For a Self-Signed Certificate (Conditionally Required).

To learn more about running the ebscmadmin utility to update the FQDN, see: Update the Oracle E-Business Suite Cloud Manager Load Balancer Fully Qualified Domain Name.

  1. Run the ebscmadmin command from the Oracle E-Business Suite Cloud Manager VM to update Oracle E-Business Suite Cloud Manager Load Balancer with a new FQDN. This command also regenerates the load balancer self-signed certificate for the load balancer listener resource in OCI with the same Common Name (CN) as in the user-provided load balancer FQDN.

    For example, enter the following:

    $ sudo su - oracle
    $ cd /u01/install/APPS/apps-unlimited-ebs/bin
    $ ./ebscmadmin update-load-balancer-fqdn <argument>
  2. Import the certificate to your source application tier nodes:

    1. Copy the democert.crt file to each application tier node in your source system.

    2. Add the certificate to the keystore following the example commands below, one for each file system:

      $ keytool -import -trustcacerts -keystore /u01/install/APPS/fs1/EBSapps/comn/util/jdk64/jre/lib/security/cacerts -file democert.crt -alias sample2021webentry
      
      $ keytool -import -trustcacerts -keystore /u01/install/APPS/fs2/EBSapps/comn/util/jdk64/jre/lib/security/cacerts -file democert.crt -alias sample2021webentry  

      Note: You might need to grant write permissions to the cacerts file using the command:

      $ chmod u+w <cacerts_file> 

      The write permissions can be revoked after running the above keytool command using:

      $ chmod u-w <cacerts_file>

      If prompted, enter the keystore password. See: The cacerts Certificate File.

      For more information on managing the JDK cacerts file, refer to My Oracle Support Knowledge Document 1367293.1, Enabling TLS in Oracle E-Business Suite Release 12.2.

  3. Stop and start the Oracle E-Business Suite instance.

Manual Steps For a Self-Signed Certificate (Conditionally Required)

Perform these steps if you are using a self-signed certificate generated during Cloud Manager configuration and associated with the IP address of the load balancer.

  1. Replace the self-signed certificate generated by the Cloud Manager with a new self-signed certificate generated using a common name (CN).

    For example, say you are using the IP address of the load balancer as your web entry point. Log in to the Cloud Manager VM and run the command as in the following example:

    $ openssl req -x509 -newkey rsa:4096 -sha256 -days 356 -nodes -keyout democert.key -out democert.crt -subj '/CN=192.0.2.254' -extensions san -config <( echo '[req]'; echo 'distinguished_name=req'; echo '[san]'; echo 'subjectAltName=IP:192.0.2.254') 
  2. Add the newly-created certificate where needed:

    1. Add the certificate to the target OCI; for example, sample2021-ebscm-instance-prov-vm-lbaas

    2. Select the corresponding load balancer in the OCI Console. Under Resources, click Certificates. From the Certificate Resource list, select the Load Balancer Managed Certificate certificate resource type. Click Add Certificate.

    3. Add democert.crt to the SSL certificate section and democert.key to the private key section.

  3. Update the listener. For example, update the listener in sample2021-ebscm-instance-prov-vm-lbaas to select the newly-created certificate.

  4. Import the certificate to your source application tier nodes:

    1. Copy the democert.crt file to each application tier node in your source system.

    2. Add the certificate to the keystore following the example commands below, one for each file system:

      $ keytool -import -trustcacerts -keystore /u01/install/APPS/fs1/EBSapps/comn/util/jdk64/jre/lib/security/cacerts -file democert.crt -alias sample2021webentry 
      
      $ keytool -import -trustcacerts -keystore /u01/install/APPS/fs2/EBSapps/comn/util/jdk64/jre/lib/security/cacerts -file democert.crt -alias sample2021webentry

      Note: You might need to grant write permissions to the cacerts file using the command:

      $ chmod u+w <cacerts_file> 

      The write permissions can be revoked after running the above keytool command using:

      $ chmod u-w <cacerts_file>

      If prompted, enter the keystore password. See:The cacerts Certificate File.

      For more information on managing the JDK cacerts file, refer to My Oracle Support Knowledge Document 1367293.1, Enabling TLS in Oracle E-Business Suite Release 12.2.

  5. Stop and start the Oracle E-Business Suite instance.

Set Up Networking

Reserved Public IP Addresses

For information on managing public IP addresses, see: Public IP Addresses.

  1. Create public IP reservations for the application tier and database tier using the OCI Console. Use the same compartment as the Oracle E-Business Suite compartment of the network profile.

  2. Provide the created IPs in Standby Configuration page in Oracle Applications Manager for the target application and database tier IPs.

Opening Ports

The network access described below is required at the seclist level. For the source database, the same needs to be opened at the iptables level as well. The target iptables would be updated automatically.

If the source and target belong to the same network (same virtual cloud network), then communication between the source and the target occurs using private IPs; otherwise, communication uses public IPs. The reservation IPs for the target must be secured accordingly.

  1. From the Target application tier, access the Source application tier: SSH connectivity (port 22)

  2. From the Target database tier, access the Source database tier: TNS connectivity (port 1521)

  3. From the Source database tier, access the Target database tier: TNS connectivity (port 1521)

    The following are example commands to open the local firewall for Standby (Oracle Linux 7). The command could vary depending on the operation system version.

    sudo firewall-cmd --zone=public --add-rich-rule 'rule family=ipv4 source address=<standby-oci-db-reserved-ip> port port=<active db listener port, eg. 1521> protocol=tcp accept' --permanent
    
    sudo firewall-cmd --zone=public --add-rich-rule 'rule family=ipv4 source address=<standby-oci-db-reserved-ip> port port=<active db listener port, eg. 1521> protocol=tcp accept
  4. From the Source application tier, access the Oracle E-Business Suite Cloud Manager URL.

Reserved Private IP Addresses

Creating a reservation is unnecessary in this scenario.

  1. Ensure the IPs entered for the target application and database tiers are within the application tier and database tier subset CIDR respectively, and that these IPs are not already assigned to instances.

Create a Standby Environment on Compute for Oracle Cloud Infrastructure from an On-Premises Environment

Important: Before configuring a standby environment, ensure that there is an ingress rule defined in the Oracle E-Business Suite Cloud Manager LBaaS security list that allows connectivity from the on-premises Oracle E-Business Suite application tier node IP address. Otherwise, validation will not occur.

Ensure that the proxy values are set in the context file accordingly, run AutoConfig, and stop and start the application tier services.

If the proxy is used, set values for s_proxyhost, s_proxyport, s_proxybypassdomain, s_nonproxyhosts in the context file. If the proxy is not used, ensure these context values are cleared. To remove any proxy settings and also retain the null values for the proxy settings, set the following context variables as described below and run AutoConfig:

<proxyhost oa_var="s_proxyhost"></proxyhost>
<proxyport oa_var="s_proxyport" customized="yes"></proxyport>
<proxybypassdomain oa_var="s_proxybypassdomain" customized="yes"></proxybypassdomain>
<nonproxyhosts oa_var="s_nonproxyhosts"></nonproxyhosts>

To run AutoConfig:

cd $ADMIN_SCRIPTS_HOME ; ./adautocfg.sh

Ensure that the Resource Owner option is selected under Allowed Grant Types in the registration of Oracle E-Business Suite Cloud Manager as an application in Oracle Identity Cloud Service (IDCS). This configuration is required to allow REST calls from Oracle E-Business Suite. See Register Oracle E-Business Suite Cloud Manager as a Confidential Application.

Perform these steps to configure a standby environment in Oracle Applications Manager.

Access the Standby Environment Pages in Oracle Applications Manager

  1. Log in to Oracle E-Business Suite on-premises environment as a user with access to Oracle Applications Manager. For example, log on as a user with the out-of-box System Administration responsibility.

  2. Select the Oracle Applications Manager responsibility in the Navigator in the home page, then select Cloud Standby.

  3. The Oracle Cloud Infrastructure page shows details for the OCI account: Tenancy, Account, and EBS Cloud Manager name. Any configurations for existing standby environments are also shown.

Edit the Oracle Cloud Infrastructure Account

You can edit some of the settings for Oracle E-Business Suite Cloud Manager here.

  1. Click on Edit Oracle Cloud Infrastructure Account to edit the account details.

  2. Enter a new Oracle Cloud Username.

  3. Enter the Oracle Cloud Password.

  4. Choose to define a new Cloud Manager Definition, or use an existing one.

    If you choose a new definition, enter the following:

    • EBS Cloud Manager Name

    • EBS Cloud Manager URL: Select the IP address that you use to connect to the Cloud Manager, including the port if needed.

      For example, https://192.0.2.254

    If you choose to use an existing definition, select it in the Cloud Manager field.

  5. Click Validate to validate your settings.

  6. The Oracle Cloud Infrastructure Tenancy Details are shown but cannot be edited:

    • Tenancy Name

    • Tenancy OCID

    • Username

    • User OCID

  7. Click Save.

Enter Standby Environment Information and Introspect the Application Tier

  1. On the main Oracle Cloud Infrastructure page, click Configure Standby Environment in the Standby Environments region.

  2. Enter a Standby Environment Name.

  3. Select a Network Profile. We recommend you choose a Network Profile enabled for the File Storage service. See Create a Network Profile for instructions.

  4. The Region and Compartment are displayed.

  5. Optionally select your operating system time zone. This is the operating system time zone for your application and database tier nodes.

    Oracle E-Business Suite Cloud Manager will validate your selection for the server time zone, unless you check the box Bypass Server Timezone Profile Validation.

    Warning: If you choose to override the time zone defined in the source environment, then the operating system for the new standby environment across all Compute instances and cloud services will be configured to use the selected time zone. After you provision your environment, and prior to starting any database and application tier services, you must set the TZ environment variable to match the Server Timezone profile option. Failure to do so could lead to data corruption. See: Time Zone Support in the Oracle E-Business Suite Setup Guide.

    For more information on time zone support, see: Time Zone Support in Oracle E-Business Suite Cloud Manager.

  6. Specify a Source IP address.

    This IP address is used to establish communication from the application tier node running in OCI. Ensure that the IP address you enter meets this purpose.

  7. Click Introspect Apps Tier to submit a concurrent request to introspect the application tier.

  8. The new standby environment configuration appears in the Standby Environments list.

Review Your Standby Environment Configuration In Progress in Oracle Applications Manager

  1. Click the name of your new standby environment the Standby Environments list in Oracle Applications Manager.

  2. The details of your standby environment configuration are shown, including the following:

    • Standby Environment Name

    • Network Profile

    • Region

    • Compartment Status

    • Standby Status

  3. The Configuration Stages are also shown in a table. A concurrent request is submitted for each stage. Click on the Request ID link to view the log file of the concurrent request.

  4. Information on the Application Tier is also shown, including:

    • Oracle E-Business Suite Version

    • OS User

    • Application Top directory

    • Middleware Licensing model

    • File System Type

      For a shared file system, the File Storage Mount Target and Mount Options are shown.

    Information for the local node and the standby node are given in a table.

  5. Perform Database Tier Introspection as described below.

Perform Database Tier Introspection

  1. If not done already, install the Oracle E-Business Suite Cloud Backup Module on the database tier node. See: Install the Oracle E-Business Suite Cloud Backup Module.

  2. Run the db-introspect.sh script. For example:

    $ RemoteClone/bin/db-introspect.sh --action introspect --context-file <context file, for example: /u01/install/APPS/12.1.0/appsutil/demosid_demo1221ccomp1db.xml> --standby-name <standby environment name given in the Introspect Application Tier page> --standby-reserved-ip <standby reserved IP or private IP depending on the --standby-reserved-ip-type> --standby-reserved-ip-type <Public or Private> --active-db-ip <active database IP reachable from target network> --oci-private-key-file <absolute path to key file> --ebs-username <for example: SYSADMIN> --listener-port <for example, 1521> --session-dir <absolute path session log directory, for example: /home/oracle/session>

    Note the following for the parameters for the script:

    • For the parameter --oci-private-key-file <absolute path to key file>, this value should be the API signing key of the user that was used to set the Oracle Cloud Infrastructure credentials. See: Edit Oracle Cloud Infrastructure Account.

    • If the --standby-reserved-ip-type value is Public, then the --standby-reserved-ip value must be a Public IP reservation created in OCI. If --standby-reserved-ip-type value is Private, then the --standby-reserved-ip value must be a Private IP that belongs to the DB Subnet CIDR Block and is not already assigned.

    • For -active-db-ip <active database IP reachable from target network>: This IP is used to connect to the active database from standby and also this IP is used to open local firewall on the standby database. Depending on the network configuration (Public or Private), use the active DB IP that is reachable from the standby to active and also for the successful communication from active to standby when this IP is allowed in the local firewall of the standby.

Enter Configuration Information for the Standby Application and Database Tiers

In the Standby Environment Configuration on Oracle Cloud Infrastructure page, add the following information:

  1. Enter the reserved public or private IP for the application tier.

  2. Enter the shape for the standby application and database tiers.

    Flexible shapes are supported for both application and database tiers. Flexible shapes allow you to customize the number of OCPUs and the amount of memory when launching or resizing your VM.

  3. Choose a middleware licensing model, either BYOL or UCM. If you choose BYOL, you are indicating that you have purchased or transferred the perpetual licenses required for customized Oracle E-Business Suite Applications. If you choose UCM, you are adopting the Universal Credits subscription-based model, and paying for usage as you go. Make sure you understand the cost associated with this choice.

    If you chose BYOL, select the Image Build.

    If you chose UCM, select the Image Version.

  4. For Storage, choose the File System Type: Non-Shared or Shared.

    If you choose Shared, then you are prompted for the File Storage Mount Target. Select a mount target from the list shown; this list of values is dependent on the network profile you selected during application tier introspection.

    You can also specify Mount Options. Default parameters are shown. You can edit these options, but specifying a mount option or parameter that is not supported or recommended for a shared storage file system deployment may result in a provisioning failure. Exercise extreme caution when editing these parameters; options are not validated in this page.

  5. Click Submit.

Review Standby Environment Configuration in Oracle Applications Manager

You can review your standby environment in Oracle E-Business Cloud Manager. See: Review Standby Environment Details.

If the configuration has failed, click Retry in its configuration review page to try configuring the standby environment again.

If the configuration has completed with a Successful or Failed status, you can click Remove Standby to remove the standby configuration.

From Oracle E-Business Cloud Manager, you can also:

Promote a Standby Environment on Compute Services

You can promote only standby environments that have been successfully configured.

Select the Standby Environment

  1. Navigate to the Environments page in Oracle E-Business Suite Cloud Manager.

  2. Select Promote from the Action menu for the standby environment you wish to promote.

  3. Alternatively, select the standby environment and click on Promote from its Environment Details page.

Enter Standby Environment Details

The Environment Name, EBS Compartment, and Network Profile Name are shown and cannot be changed.

  1. Enter the APPS Password.

  2. Enter the WebLogic Server Password.

  3. Optionally enter tagging information in the Tags region.

    • Tag Namespace: Select a predefined tag namespace or select None (add a free-form tag).

    • Tag Key: Enter the name you use to refer to the tag.

    • Value: Enter the value for the tag key.

  4. Click Next.

Enter Database Information

Review and enter database details and related options.

  1. The Database Name and PDB Name are shown but can be updated. The Database Service Type field is read-only.

    Enter the following:

    • Logical Hostname: Provide the logical hostname that will be used as part of the Oracle E-Business Suite configuration. Note that this is not the physical hostname.

    • Logical Domain: Provide the logical domain that will be used as part of the Oracle E-Business Suite configuration. Note that this is not the physical domain.

    • VM Shape: This field is read-only. The shape shown is the shape selected during standby creation.

    • Enable TDE: This field is read-only and enabled by default.

    • Admin Password: The admin password for the database is used for the SYS user as well. If TDE is enabled for the environment, then this password is also used as the TDE wallet password.

    • New APPS Password: Enter a password for the APPS user.

    • New EBS_SYSTEM Password: If Oracle E-Business Suite System Schema Migration has been completed on the source environment, then enter a new EBS_SYSTEM password. This password must contain alphanumeric characters only. For more information on the Oracle E-Business Suite System Schema and the EBS_SYSTEM password, see My Oracle Support Knowledge Document 2755875.1, Oracle E-Business Suite Release 12.2 System Schema Migration.

    • New WebLogic Server Password: Enter a password for the Oracle WebLogic Server administration user on the environment.

  2. Enter the Active Database credentials:

    • Admin Password

    • Wallet Password

  3. Click Next.

Enter Application Tier Information

  1. Define your zones in the Zone region.

    For more information on zones, refer to My Oracle Support Knowledge Document 1375670.1, Oracle E-Business Suite Release 12.2 Configuration in a DMZ.

    Note that you can have multiple zones across subnets. You can configure your environment such that you functional redirection per zone is in accordance with functional affinity.

    Also, you can have a load balancer shared between multiple zones of the same type. This configuration allows for two separate URLs to resolve to the same IP address and the shared load balancer will target one back end set or another.

    Note too that you have flexibility in your configuration. One zone, Zone A, can have one load balancer assigned to it, while another two zones, Zone B and Zone C, can have a second load balancer assigned to them.

    Define your internal zone first.

    Enter values for the following properties:

    • Name

    • Type

  2. In the Web Entry Point region, enter values for the following properties:

    • Web Entry Type: Choose one of the following: New Load Balancer (LBaaS), Manually Configured Load Balancer to select a manually deployed existing load balancer, or Application Tier Node to choose the primary application tier as the entry point.

    • Load Balancer Shape: If you chose New Load Balancer as the web entry type, a new flexible shape load balancer will be created. Select the maximum bandwidth for your new load balancer. For example: 100 Mbps. The minimum bandwidth will default to 10 Mbps.

    • Protocol: Select the protocol for access to the environment, either http or https.

    • Hostname: Enter the host name for your web entry point. The web entry host name must be in lowercase. For example: myhost

    • Domain: Enter the domain for your web entry point. The web entry domain name must be in lowercase. For example: example.com

    • Port: Select the port for your web entry point. If there is no load balancer, then the port is automatically populated depending on the protocol: 8000 for http and 4443 for https. Otherwise, select the appropriate port for use with your load balancer, such as 80 for http or 443 for https. Note that to allow access to the Oracle E-Business Suite login URL, your network administrator must define an ingress rule in the load balancer security list. See Create Network Resources For Deploying Oracle E-Business Suite Environments.

  3. When promoting an environment that uses File Storage service, the File System details are shown by default:

    • File System Type (Shared)

    • File System Name

    • File System OCID

    • File Storage Mount Target

    • Storage Type

    Important: You must ensure you specify enough storage for your nodes. Refer to Oracle E-Business Suite Installation Guide: Using Rapid Install for guidelines on space usage.

    If you choose Non-Shared, you must specify a value for the Block Volume Storage field for every node in the Application Tier Nodes field.

  4. In the Logical Host region, enter values for the following properties:

    • Logical Host Option: Choose Automatic or Manual.

    • Logical Hostname Prefix: If you chose Automatic, enter your desired hostname prefix.

      You do not need to enter this if you chose Manual for your logical host option, but you will be prompted for the Logical Hostname for your nodes in the Application Tier Nodes region.

    • Logical Domain: Enter the logical domain.

  5. In the Application Tier Nodes region, enter properties for each node.

    Note that you can define a specific shape for each application tier node.

    • Logical Hostname

    • Logical FQDN

    • Shape: You can change the shape of the node. When choosing a flexible shape, for example, VM.Standard.E3.Flex, use the sliders to choose the number of OCPUs and the amount of memory (GB).

    • Block Volume Storage

    • Fault Domain: Select the fault domain. Refer to Fault Domains for more information.

  6. Click Save Zone to save your zone definition.

  7. Define additional zones using the Add Zone button.

  8. When you have completed adding your zones, click Next.

Specify Your Extensibility Options

You can optionally extend the standby promotion job to meet your own requirements. By default, Oracle E-Business Suite Cloud Manager follows a standard job definition for promotion. However, Oracle E-Business Suite Cloud Manager administrators can also create extended job definitions that include additional tasks as part of the promotion job. In this case you can select the appropriate extended job definition for Oracle E-Business Suite Cloud Manager to follow when promoting your environment. If you select an extended job definition, you may need to enter values for input parameters required by the additional tasks in that job definition.

Additional Information: For more information on using the Extensibility Framework to extend job definitions, see Set Up the Extensibility Framework.

Additionally, whether you are using the standard promotion job definition or an extended job definition, you can choose to have Oracle E-Business Suite Cloud Manager pause at specified points during the promotion job. For example, if you want to perform your own validations after a particular phase before allowing Oracle E-Business Suite Cloud Manager to proceed to the next phase, you can add a pause at that point. You can then resume the promotion job when you are ready to proceed. See Monitor Job Status.

Specify Your Job Definition

  1. Optionally select an extended job definition for promoting your environment in the Job Definition field.

  2. In the Task Parameters tab, specify any parameter values required for the additional tasks in the job definition. Some parameters may include default values, which you can override as needed.

Specify Your Job Definition Details

  1. Click the Job Definition Details tab. This tab displays a list of the phases in the job definition and the tasks within each phase.

  2. To specify that Oracle E-Business Suite Cloud Manager should pause its processing before a particular phase, click the Actions icon next to that phase, and then select Add Pause.

    Note: Pauses occur before the phase at which they are defined.

  3. Click Next.

Enter SSH Keys

Optionally upload SSH keys for users.

Note: You cannot add keys after the promotion process is completed.

  1. Click Add Key.

  2. Specify the tiers for the SSH key. Choose All Tiers, Application Tier, or Database Tier.

  3. Specify the pertinent OS User type. Choose All Users, Operating System Administrator, or Application Administrator.

  4. Upload the SSH key file. The file name will default in.

  5. The system will validate the SSH key. Click Next to continue.

Review Your Promotion Details

  1. Review the installation details; database details; application tier details, including zones; job definition details, and SSH key information.

  2. To promote your environment, click Submit.

  3. You can check the status of the job to promote the environment in the Jobs page.

    A standby environment that has just been promoted successfully has the value "promote-standby (Successful)" in the Environment Details page, with a link to the Job Details page. See Review Job Status for more information.

Post-Promotion Steps

  1. After the standby environment has been promoted, run the following cleanup script on the source database server to clean up the local configuration.

    $ RemoteClone/bin/db-standby-cleanup.sh --context-file <absolute path to DB context file> --standby-name <standby name> --oci-private-key-file <absolute path to key file> --ebs-username <ebs username
  2. Depending on the Oracle E-Business code level of your environment, Oracle E-Business Suite Cloud Manager may initially place the environment in lockdown mode to prompt you to review and respond to the secure configuration recommendations. In this case, a system administrator must resolve or acknowledge the recommended security configurations in the Secure Configuration Console to unlock the system for normal usage. See Review Secure Configuration Recommendations for Oracle E-Business Suite.

Delete a Standby Environment on Compute Cloud Service

You can delete a standby environment on Oracle Compute Cloud Service from within Oracle Applications Manager, but not within Oracle E-Business Suite Cloud Manager. You cannot delete a standby environment that has an "In Progress" status.

  1. Navigate to the Oracle Cloud Infrastructure page within Oracle Applications Manager.

  2. Click on the name of the standby environment you wish to delete.

  3. Click Remove Standby in the Standby Environment Configuration on Oracle Cloud Infrastructure page.

  4. After the standby environment has been deleted, run the following cleanup script on the source database server to clean up the local configuration.

    $ RemoteClone/bin/db-standby-cleanup.sh --context-file <absolute path to DB context file> --standby-name <standby name> --oci-private-key-file <absolute path to key file> --ebs-username <ebs username> --session-dir <session dir to create temporary files and log files>

Reduced Downtime Lift and Shift: Database Cloud Service

The "Reduced Downtime Lift and Shift" capability is available for target environments which incorporate a database cloud service (that is, Oracle Base Database Service or Exadata Database Service). In this scenario, Cloud Manager creates a standby of an on-premises environment on OCI and promotes that standby to accomplish the lift and shift. This capability is supported for EBS 12.2 and Oracle Database 19c only and utilizes Oracle Zero Downtime Migration (ZDM).

Important: You should create only one standby environment from a single source environment. Only one standby environment can be promoted, so any others are unnecessary.

Important: Regarding performing maintenance on environments: You should not perform maintenance on standby environments. If you perform maintenance on a source environment, you should re-create your standby environment.

Note the following regarding the ZDM service:

Topics in this section are:

Prerequisites for Creating a Standby Environment using a Database Cloud Service

Create a Standby Environment with a Database Cloud Service

Follow these steps to create a standby of an on-premises environment in which the target environment incorporates a database cloud service such as Oracle Base Database Service or Exadata Database Service. Note that this capability is supported for Oracle E-Business Suite Release 12.2 and Oracle Database 19c only.

Enter Details for the Primary Environment Application Tier Node

  1. On the Oracle E-Business Suite Cloud Manager Environments page, click Provision Environment and select Standby.

  2. In the Primary Environment Application Details page, begin by entering the Primary node IP address.

    Enter the admin application tier node IP address from the primary environment accessible from the Oracle E-Business Suite Cloud Manager VM or bastion server. Note that Oracle E-Business Suite Cloud Manager expects SSH connectivity on port 22.

  3. Enter the OS user (application binaries owner).

  4. Enter the OS privileged user (a user with sudoer capabilities Cloud Manager uses to orchestrate the flow).

  5. Enter the Full path in Cloud Manager to SSH private key for OS privileged user.

    The full path to the private key in the Oracle E-Business Suite Cloud Manager VM is used to establish a connection to the source application tier host. If a bastion server is used, the key will be used to connect from the bastion server; otherwise it will be used from the Cloud Manager VM. A private key configured with a passphrase is not supported.

  6. Enter the APPS password for the source environment. Note that this password must conform to Oracle E-Business Suite Cloud Manager security requirements and contain alphanumeric characters only. This entry is validated after you select the Next button.

  7. Enter the WebLogic Server password for the source environment. Note that this password must conform to Oracle E-Business Suite Cloud Manager security requirements. The password must be at least eight characters, and it must contain at least one alphabetic character plus at least one special character from ! " # $ % & ( ) * + , - . / : ; = < > ? @ ][ ^ _ ` { | } ~ or at least one numeric character. This entry is validated after you select the Next button.

  8. Enter the Full path to Run file system context file. The value of this field must include the full path to the run file system context file; for example, /u01/install/APPS/fs1/inst/apps/mypdb_app01/appl/admin/mypdb_app01.xml.

  9. Enter the Stage directory (OS privileged user writable directory). This temporary directory is used by the standby creation process and must be writeable by the OS privileged user.

  10. If applicable, click the Use Bastion Server to connect to App Tier Node from Cloud Manager toggle switch.

  11. If you are using a bastion server, enter the following:

    • Bastion IP address.

    • Bastion OS User

    • Path in Cloud Manager to SSH private key for Bastion OS user

  12. Click Next.

Enter Primary Database Node Details

Enter the primary database node details. If you are using a clustered database, enter the details for the first node.

  1. Enter the Database node private IP address.

  2. Enter the OS user (Database binaries owner).

  3. Enter the OS privileged user (user with sudoer capabilities Cloud Manager uses to orchestrate the flow) .

  4. Enter the Full path in Cloud Manager to SSH Private key for OS privileged user. The value of this field must be the full path to the private key in Oracle E-Business Suite Cloud Manager VM that is used to establish a connection to the source database tier host. If a bastion server is used, the key will be used from the bastion server; otherwise it will be used from the Cloud Manager VM. A private key configured with a passphrase is not supported.

  5. Enter the SYS password.

    Note that the password for the source environment must meet Oracle E-Business Suite Cloud Manager security requirements. The password must not contain the username 'SYS'. The password must be 9 to 30 characters and contain at least two uppercase, two lowercase, two special, and two numeric characters. The special characters must be underscores (_), number signs (#), or hyphens (-).

    The same password will be used as the standby database admin password.

  6. Enter the TDE encryption password.

    This password can be different from the SYS password but it must also conform to Oracle E-Business Suite Cloud Manager security requirements.

    The same password will be used as the standby TDE encryption password.

  7. Enter the Full path to Pluggable Database context file. The database context file name here must include the full path for the file; for example, /u01/install/APPS/db19/appsutil/db/context.xml.

  8. Enter the Stage directory. This temporary directory is used by the standby creation process and must be writable by the OS privileged user.

  9. If applicable, click the Use Bastion Server to connect to Database Node from Cloud Manager toggle switch.

  10. If you are using a bastion server, enter the following:

    • Bastion IP address

    • Bastion OS User.

    • Path in Cloud Manager to SSH Private key for Bastion OS user

  11. Click Next.

Enter Standby Details

Enter information for the new environment, including name, web entry point, and primary application tier node details.

  1. Enter the Environment Name for your environment. For example: usdev1

  2. Select the EBS Compartment. Only Oracle E-Business Suite compartments that you have access to are available in the list. The default is your root compartment.

  3. The region is display-only.

  4. Select the Network Profile that contains the network resources you want to use to provision your environment. For example: DEFAULT_PROFILE_ADVANCED.

    Note: If you plan to provision an environment which contains a multinode application tier with a shared file system, your network profile must support FSS and therefore you cannot use the default profile.

    Click the information icon to view the Network Profile Details. You may wish to capture this information for use later in the interview.

  5. Optionally select your operating system time zone. This is the operating system time zone for your application and database tier nodes. For more information on time zone support, see: Time Zone Support in Oracle E-Business Suite Cloud Manager. Oracle E-Business Suite Cloud Manager will validate your selection for the server time zone, unless you check the box Bypass Server Timezone Profile Validation.

  6. Under Admin Node Details, select the shape. Note that for an Oracle RAC environment, you must select a shape that supports it. For example: VM Standard2.2 (2 OCPU, 30GB RAM)

    You can choose VM.Standard.E4.Flex or VM.Standard3.Flex based on the availability in the OCI region. With these choices, you can choose the number of OCPUs and the amount of memory. For VM.Standard.E4.Flex, the default number of OCPUs is 4 and the default amount of memory is 64 GB.

  7. Select the Fusion Middleware license type.

  8. Choose the File System Type: Non-Shared or Shared.

    If you choose Shared, then you are prompted for the File Storage Mount Target. If the File Storage Mount Target for the network profile specified earlier matches any of the Mount Targets in the network compartment created on the Oracle Cloud Infrastructure, then that Mount Target appears in the list.

    For a Shared File System Type, you can also specify Mount Options. Default parameters are shown. You can edit these options, but specifying a mount option or parameter that is not supported or recommended for a shared storage file system deployment may result in a provisioning failure. Exercise extreme caution when editing these parameters, as options are not validated in this page.

    If you choose Non-Shared, you must specify a value for the Block Volume Storage field for every node in the Application Tier Nodes field.

    Important: You must ensure you specify enough storage for your nodes. Refer to Oracle E-Business Suite Installation Guide: Using Rapid Install for guidelines on space usage.

  9. Select the fault domain. Refer to Fault Domains for more information.

  10. Optionally enter tagging information in the Tags region.

    • Tag Namespace: Select a predefined tag namespace or select None (add a free-form tag).

    • Tag Key: Enter the name you use to refer to the tag.

    • Value: Enter the value for the tag key.

  11. Click Next.

Enter Standby Environment Database Details

Select the Standby Environment Database Service and enter details for it.

Standby Environment Database Details for Base Database Service DB System

  1. Select the License Type.

    Select License Included if you want to obtain a new license or Bring Your Own License (BYOL) if you want to use a license you already own.

  2. The following fields are shown as display-only: the database name, the PDB name, and the DB patch level.

  3. Select the shape.

  4. Select the number of nodes.

  5. Select the DB software edition. The options are: Enterprise Edition, Enterprise Edition High Performance, and Enterprise Edition Extreme Performance.

  6. Select the fault domain. Refer to Fault Domains for more information.

  7. Under Advanced Options, you can set RMAN_CHANNEL_COUNT. Specify the number of Recovery Manager (RMAN) staging channels to allocate for the standby environment. The default value used by RMAN is 100% of the number of OCPUs. The minimum value is one channel. The maximum value is 255 irrespective of shape.

  8. Click Next.

Standby Environment Database Details for Oracle Exadata Database Service

  1. Select the Exadata VM cluster compartment.

  2. Select the Exadata VM cluster name.

  3. Enter the Exadata infrastructure.

  4. The following fields are shown as display-only: the database name, the PDB name, and the DB patch level.

  5. Click Next.

Enter SSH Keys

Optionally upload SSH keys for users.

Note: You can add keys to the application tier only.

  1. Click Add Key.

  2. Specify the tiers for the SSH key. Choose All Tiers, Application Tier, or Database Tier.

  3. Specify the pertinent OS User type. Choose All Users, Operating System Administrator, or Application Administrator.

  4. Upload the SSH key file. The file name will default in.

  5. The system will validate the SSH key. Click Next to continue.

Review Standby Environment Details

Review the details for your standby environment on this page. To create the standby environment, click Submit.

Promote a Standby Environment on a Database Cloud Service

You can promote only standby environments that have been successfully configured.

Important: Before proceeding with the promotion procedure, you must ensure that no concurrent requests are in the Running or Pending state. All running concurrent requests must be completed to a logical end.

Select the Standby Environment

  1. Navigate to the Environments page in Oracle E-Business Suite Cloud Manager.

  2. Select Promote from the Action menu for the standby environment you wish to promote.

  3. Alternatively, select the standby environment and click on Promote from its Environment Details page.

Enter Standby Environment Details

The Environment Name, EBS Compartment, Region, and Network Profile Name are shown and cannot be changed.

  1. Enter the Primary Instance credentials:

    • Enter the APPS Password.

    • Enter the WebLogic Server Password.

  2. Optionally enter tagging information in the Tags region.

    • Tag Namespace: Select a predefined tag namespace or select None (add a free-form tag).

    • Tag Key: Enter the name you use to refer to the tag.

    • Value: Enter the value for the tag key.

  3. Click Next.

Enter Database Tier Information

Enter database details and related options.

  1. The Database Name, PDB Name, Database Service Type, VM Shape, and the selection for the Enable TDE checkbox are read-only.

  2. Enter the EBS_SYSTEM Password.

  3. Enter the SYS Password. This is the current SYS user password.

  4. Enter the Wallet Password.

  5. Click Next.

Enter Application Tier Information

  1. Define your zones in the Zone region.

    For more information on zones, refer to My Oracle Support Knowledge Document 1375670.1, Oracle E-Business Suite Release 12.2 Configuration in a DMZ.

    Note that you can have multiple zones across subnets. You can configure your environment such that you functional redirection per zone is in accordance with functional affinity.

    Also, you can have a load balancer shared between multiple zones of the same type. This configuration allows for two separate URLs to resolve to the same IP address and the shared load balancer will target one back-end set or another.

    Note too that you have flexibility in your configuration. One zone, Zone A, can have one load balancer assigned to it, while another two zones, Zone B and Zone C, can have a second load balancer assigned to them.

    Define your internal zone first.

    Enter values for the following properties:

    • Name

    • Type

  2. In the Web Entry Point region, enter values for the following properties:

    • Web Entry Type: Choose one of the following: New Load Balancer (LBaaS), Use OCI Load Balancer, Manually Configured Load Balancer to select a manually deployed existing load balancer, or Application Tier Node to choose the primary application tier as the entry point.

    • Load Balancer Shape: If you chose New Load Balancer as the web entry type, a new flexible shape load balancer will be created. Select the maximum bandwidth for your new load balancer. For example: 100 Mbps. The minimum bandwidth will default to 10 Mbps.

    • OCI Load Balancer: If you chose Use OCI Load Balancer, select the load balancer to use.

    • Protocol: Select the protocol for access to the environment, either http or https.

    • Hostname: Enter the host name for your web entry point. The web entry host name must be in lowercase. For example: myhost

    • Domain: Enter the domain for your web entry point. The web entry domain name must be in lowercase. For example: example.com

    • Port: Select the port for your web entry point. If there is no load balancer, then the port is automatically populated depending on the protocol: 8000 for http and 4443 for https. Otherwise, select the appropriate port for use with your load balancer, such as 80 for http or 443 for https. Note that to allow access to the Oracle E-Business Suite login URL, your network administrator must define an ingress rule in the load balancer security list. See Create Network Resources For Deploying Oracle E-Business Suite Environments.

  3. When promoting an environment that uses the File Storage service, the File System details are shown by default:

    • File System Type (Shared)

    • File System Name

    • File System OCID

    • File Storage Mount Target

    • Storage Type

    Important: You must ensure you specify enough storage for your nodes. Refer to Oracle E-Business Suite Installation Guide: Using Rapid Install for guidelines on space usage.

    If you choose Non-Shared, you must specify a value for the Block Volume Storage field for every node in the Application Tier Nodes field.

  4. In the Logical Host region, enter values for the following properties:

    • Logical Hostname Prefix: If you chose Automatic, enter your desired hostname prefix.

      You do not need to enter this if you chose Manual for your logical host option, but you will be prompted for the Logical Hostname for your nodes in the Application Tier Nodes region.

    • Logical Domain: Enter the logical domain.

  5. In the Application Tier Nodes region, enter properties for each node.

    Note that you can define a specific shape for each application tier node.

    • Logical Hostname

    • Logical FQDN

    • Shape: You can change the shape of the node. When choosing a flexible shape, for example, VM.Standard.E3.Flex, use the sliders to choose the number of OCPUs and the amount of memory (GB).

    • Block Volume Storage

    • Fault Domain: Select the fault domain. Refer to Fault Domains for more information.

  6. Click Save Zone to save your zone definition.

  7. Define additional zones using the Add Zone button.

  8. When you have completed adding your zones, click Next.

Specify Your Extensibility Options

You can optionally extend the standby promotion job to meet your own requirements. By default, Oracle E-Business Suite Cloud Manager follows a standard job definition for promotion. However, Oracle E-Business Suite Cloud Manager administrators can also create extended job definitions that include additional tasks as part of the promotion job. In this case you can select the appropriate extended job definition for Oracle E-Business Suite Cloud Manager to follow when promoting your environment. If you select an extended job definition, you may need to enter values for input parameters required by the additional tasks in that job definition.

Additional Information: For more information on using the Extensibility Framework to extend job definitions, see Set Up the Extensibility Framework.

Additionally, whether you are using the standard promotion job definition or an extended job definition, you can choose to have Oracle E-Business Suite Cloud Manager pause at specified points during the promotion job. For example, if you want to perform your own validations after a particular phase before allowing Oracle E-Business Suite Cloud Manager to proceed to the next phase, you can add a pause at that point. You can then resume the promotion job when you are ready to proceed. See Monitor Job Status.

Specify Your Job Definition

  1. Optionally select an extended job definition for promoting your environment in the Job Definition field.

  2. In the Task Parameters tab, specify any parameter values required for the additional tasks in the job definition. Some parameters may include default values, which you can override as needed.

Specify Your Job Definition Details

  1. Click the Job Definition Details tab. This tab displays a list of the phases in the job definition and the tasks within each phase.

  2. To specify that Oracle E-Business Suite Cloud Manager should pause its processing before a particular phase, click the Actions icon next to that phase, and then select Add Pause.

    Note: Pauses occur before the phase at which they are defined.

  3. Click Next.

Review Your Promotion Details

  1. Review the installation details; database details; application tier details, including zones; and job definition details.

  2. To promote your environment, click Submit.

  3. You can check the status of the job to promote the environment in the Jobs page.

    A standby environment that has just been promoted successfully has the value "promote-standby (Successful)" in the Environment Details page, with a link to the Job Details page. See Review Job Status for more information.

  4. After the promotion is performed successfully, you should perform verification checks and then bring up the application services manually. You can also bring up the application services by using an extensible task.

Delete a Standby Environment on a Database Cloud Service

You can delete a standby environment on a database cloud service within Oracle E-Business Suite Cloud Manager. You cannot delete a standby environment that has an "In Progress" status.

  1. Navigate to the standby environment's details page. See: Review Standby Environment Details.

  2. Click the Delete button.

  3. Enter the name of the environment to confirm that you want to delete it. Click Yes.