20 Troubleshooting Oracle Database Appliance
Understand tools you can use to validate changes and troubleshoot Oracle Database Appliance problems.
- About Oracle Database Appliance Configuration Collection Utility
 Oracle Database Appliance configuration collection collects configuration information for all components in the appliance.
- About Setting Up and Removing SSH Configuration
 Understand how you can set up and remove SSH configuration.
- Viewing Oracle Database Appliance Error Correlation Reports
 Understand how to view Error Correlation Report and how to interpret the report to troubleshoot your appliance.
- Viewing Details About DCS Error Messages
 Understand how to view details about DCS errors for troubleshooting them.
- Collecting Diagnostics Data Using the BUI
 Understand how to collect diagnostics data to troubleshoot errors.
- Resolving Errors When Updating DCS Components During Patching
 Understand how to troubleshoot errors when updating DCS components during patching.
- Viewing Component Information on the Appliance
 View details of all the components installed on the appliance, and the RPM drift information.
- Errors When Logging into the Browser User Interface
 If you have problems logging into the Browser User Interface, then it may be due to your browser or credentials.
- Errors when re-imaging Oracle Database Appliance
 Understand how to troubleshoot errors that occur when re-imaging Oracle Database Appliance.
- Using Oracle Autonomous Health Framework for Running Diagnostics
 Oracle Autonomous Health Framework collects and analyzes diagnostic data collected, and proactively identifies issues before they affect the health of your system.
- Running the Disk Diagnostic Tool
 Use the Disk Diagnostic Tool to help identify the cause of disk problems.
- Running the Oracle Database Appliance Hardware Monitoring Tool
 The Oracle Database Appliance Hardware Monitoring Tool displays the status of different hardware components in Oracle Database Appliance server.
- Disabling the Browser User Interface
 You can also disable the Browser User Interface. Disabling the Browser User Interface means you can only manage your appliance through the command-line interface.
- Preparing Log Files for Oracle Support Services
 If you have a system fault that requires help from Oracle Support Services, then you may need to provide log records to help Oracle support diagnose your issue.
About Oracle Database Appliance Configuration Collection Utility
Oracle Database Appliance configuration collection collects configuration information for all components in the appliance.
The utility generates a configuration collection with a specific timestamp that can be utilized by other utilities. The collection contains configuration details for all Oracle Database Appliance components in the form of JSON files and a unified HTML configuration report. Creating a snapshot of the appliance configuration assists in debugging issues on the appliance and provides a comprehensive record of all object versions and configuration details at a specific date and time. Additionally, it serves as a valuable reference for tracking configuration changes over time.
- DCS framework such as DCS controller, DCS agent, DCS admin, etc CPU pools, Oracle Grid Infrastructure, Oracle Database, operating system, Oracle ILOM, BIOS, Oracle ASR, the firmware, Oracle HMP, and so on.
- Operating system, storage, Oracle Clusterware, Oracle KVM, and others.
The utility, by default, collects DB system list and describe
                information available on the bare metal system. To collect detailed information from
                DB systems, use the -dbsystems option. You must set passwordless
                SSH connection from the bare metal system to the DB system. The utility does not
                store any credentials or perform authentication of the connection. You can restore
                connectivity to the previous state after configuration is collected.
                     
Use the odaconfigcli collectconfig [-loc] [-dbsystems] [-redact]
                    [-silent] command to run the configuration collection. 
                     
# odaconfigcli collectconfig 
Oracle Database Appliance system config collection:
-- Performing validations:
-- Collecting configuration from the system test1
The config collection is being created at:
/opt/oracle/odaconfig/cnr_data/odaconfig_test1_23_01_2025_19_38_47
1. Collecting system info
Collecting system details [e.g. version, hardwaretype, etc] ....
Collecting storage details ....
Collecting RPM drift info ....
Collecting network info ....
2. Collecting Baremetal database info
Collecting system info ....
Collecting component info ....
Collecting dbstorage info ....
Collecting database info ....
Collecting dbhome info ....
Collecting backupconfig info ....
Collecting cpupool info ....
Collecting network info ....
Collecting objectstoreswift info ....
Collecting backupreport info ....
3. Processing Odaconfig report. Please note ** it will take few minutes ** to collect all the command outputs
Collecting ODA stack information
Collecting fixed commands information
Generating html ODAConfig report
4. Setting file protection to the files on config collection.
5. Not redacting the collection
Finished config collection and creating jsons. Following is the collection summary:
Config collect bundle created at: /opt/oracle/odaconfig/cnr_data/odaconfig_testoda803c1n1_23_01_2025_19_38_47
HTML ODAConfig report can be found at: /opt/oracle/odaconfig/cnr_data/odaconfig_testoda803c1n1_23_01_2025_19_38_47/odaconfig_testoda803c1n1_23_01_2025_19_38_47.html
Logs for this run can be found at : /opt/oracle/odaconfig/cnr_data/odaconfig_testoda803c1n1_23_01_2025_19_38_47/logsWhen you run the utility from the bare metal system, the output includes the list of DB systems and their configurations, as this information is available in the bare metal DCS metadata. The collected configuration data is provided in the form of JSON files and a unified HTML report. The CLI offers a redaction option for configuration collection, with two modes: sanitize and mask. In the sanitize mode, sensitive entities such as host name and database name are replaced with alternative strings, while in the mask mode, they are replaced with *.
Prerequisites to run the utility
- You must run the utility from the bare metal system as the rootuser.
- You can also run the utility on multi-user access enabled systems and multi-user
                    access enabled passwordless systems. Since the utility uses
                        odacli-view, no password prompts are required in these environments. If you want to redact the output in a multi-user access enabled environment, ensure that passwordless login forodaclifrom the odaadmin user is enabled, eliminating the need for password input.
- The oakd service must be running, as the utility uses odaadmclito gather hardware information.
- The system must be provisioned, as there is typically minimal DCS configuration to collect on a new system.
Command and parameters
odaconfigcli collectconfig [-loc] [-dbsystems] [-redact] [-silent]| Parameter | Description | 
|---|---|
| 
 | (Optional) Customizes results location. The default
                                    is  | 
| 
 | (Optional) Specifies the list of DB systems. Specify
                                    the DB system name as displayed in the  | 
| 
 | (Optional) Redacts sensitive entities in
                                    configuration collection. Permitted values are
                                         
 
 | 
| 
 | (Optional) Suppresses all confirmations. | 
You can specify custom commands for the tool in a JSON file. For example:
# /opt/oracle/odaconfig/customize/commands_output.json:
     "name" : "DCS Extra",
      "commands":
            [
              {
                "command": "rpm -qa | grep -e dcs -e oda-hw-mgmt -e hami -e mysql",
                 "filename": "dcsextra_rpmqadcs.out"
              },
              {
                "command": "/opt/oracle/dcs/bin/odacli list-featuretracking",
                 "filename": "dcsextra_listfeaturetracking.out"
              },
              {
                "command": "/opt/oracle/dcs/bin/odacli list-dataguardstatus",
                 "filename": "dcsextra_listdataguardstatus.out"
              },
              {
                "command": "/opt/oracle/dcs/bin/odacli list-schedules",
                 "filename": "dcsextra_listschedules.out"
              },
              {
..........
............
    "os":
    {
      "name" : "Operating System",
      "commands":
            [
               {
                 "command": "lscpu",
                 "filename": "os_lscpu.out"
               },
               {
                 "command": "free",
                 "filename": "os_free.out"
               },
               {
                 "command": "top -bn1 | head -n 50",
                 "filename": "os_top50.out"
               },Related Topics
Parent topic: Troubleshooting Oracle Database Appliance
About Setting Up and Removing SSH Configuration
Understand how you can set up and remove SSH configuration.
In earlier Oracle Database Appliance releases, the DCS agent used a scheduled SSH cleaner job that ran every 30 minutes, to clean up SSH connections configured in the system. Starting with Oracle Database Appliance release 19.24, the DCS agent does not remove SSH configurations.
The DCS agent has a new agentconfig parameter called
                    ODA_MANAGED_SSH that you can use to deactivate the
                    Setup SSH job on Oracle Database Appliance. You must set up SSH
                before you run any job that requires SSH configuration between nodes. If you run a
                job that requires SSH configuration, then the job uses the pre-configured SSH setup.
                If the SSH keys are present, but not functioning, or SSH configuration does not
                exist, then the job displays an error. You must set up a working SSH equivalence
                between nodes before you rerun the job. 
                     
ODA_MANAGED_SSH parameter is set to false. For
                example:
                odacli modify-agentconfig-parameters -n ODA_MANAGED_SSH -u -v false ODA_MANAGED_SSH parameter
                using the odacli list-agentconfig-parameters command. For
                example:odacli list-agentconfig-parameters -n ODA_MANAGED_SSHParent topic: Troubleshooting Oracle Database Appliance
Viewing Oracle Database Appliance Error Correlation Reports
Understand how to view Error Correlation Report and how to interpret the report to troubleshoot your appliance.
About Error Correlation Reports
If a DCS job fails, an Error Correlation job is created automatically to generate an Error Correlation report. You can access and review the generated Error Correlation report from the BUI to explore possible ways of error resolution.
- Log Messages: Errors, exceptions and warnings from various log files.
- Failed Task Messages: Error message displayed when the DCS job failed.
- Release Notes: Relevant Known Issues from Oracle Database Appliance Release Notes to help resolve the issue.
- Documentation: Relevant topics from the Oracle Database Appliance Documentation Library to help resolve the error.
Viewing Error Correlation Reports using ODACLI Commands
You can view the Error Correlation report of a failed DCS job by running the
                    odacli describe-job -i failed_dcs_job_id --ecr command.
                For an example output, see the topic odacli describe-job in this
                guide.
                     
Viewing Error Correlation Reports from the BUI
- Log into the Browser User
                        Interface:https://host-ip-address:7093/mgmt/index.html
- Click the Activity tab.
- In the Activities page, click the Failure or InternalError link in the failed DCS job for which you want to view the Error Correlation report. Note that only failed DCS jobs have associated Error Correlation Reports.
- You can also view the Error Correlation Report for the failed DCS job when you click the Actions menu, and select View Error Correlation Report.
- The Error Correlation Report contains the following tabs:
                              - Log Messages: Displays the logs for DCS agent,
                                DCS admin, Oracle HAMI, MySQL, and Oracle FPP. You can expand each
                                section to view the details. Only components that have logs are
                                displayed. If no errors are found, then the message No errors or exceptions found in logsis displayed in the Log Messages section.
- Failed Task Messages: Displays the specific error message displayed when the task failed.
- Release Notes: Displays relevant Known Issues
                                from Oracle Database Appliance Release
                                    Notes to help resolve the issue. You can click each of
                                these links to view the Release Notes entry. If no relevant Known
                                issues are found, then the message No matching results were found.is displayed.
- Documentation: Displays relevant topics from the Oracle Database Appliance Documentation Library to help resolve the error. You can click each of these links to view the documentation topic from the Oracle Database Appliance documentation.
 
- Log Messages: Displays the logs for DCS agent,
                                DCS admin, Oracle HAMI, MySQL, and Oracle FPP. You can expand each
                                section to view the details. Only components that have logs are
                                displayed. If no errors are found, then the message 
- In the BUI, click the Diagnostics tab.
- In the Diagnostics page, click Collect Diagnostic Data for a failed job.
- The Collect Diagnostics page displays the Error Correlation Report and Job Details in separate tabs for the failed DCS job. Click the Report File Name link to download the Error Correlation Report to your local system.
- The Job details tab displays the steps in the job and the Error Correlation Report contains the Log Messages, Failed Task Messages, Release Notes, and Documentation tabs.
Parent topic: Troubleshooting Oracle Database Appliance
Viewing Details About DCS Error Messages
Understand how to view details about DCS errors for troubleshooting them.
About Viewing Information About DCS Errors
To view more details about any errors during DCS operations, use the
                command dcserr error_code. 
                     
# /opt/oracle/dcs/bin/dcserr
dcserr error_code
 
# dcserr 10001
10001, Internal_Error, "Internal error encountered: {0}."
// *Cause: An internal error occurred.
// *Action: Contact Oracle Support Services for assistance.
/
# dcserr 1001
Unknown error codeTo view more details about DCS errors in the Browser User Interface (BUI), you can provide the DCS error code in the Search box in the BUI. The Search results display the Cause and Action of DCS error codes.
Parent topic: Troubleshooting Oracle Database Appliance
Collecting Diagnostics Data Using the BUI
Understand how to collect diagnostics data to troubleshoot errors.
About Collecting Diagnostics Data
Use the Diagnostics tab in the Browser User Interface to view diagnostic information about your deployment and the installed components.
In the Diagnostic Collection page, you can view the available diagnostics collections. Click Collect Diagnostic Data to start diagnostics collection. Once the data is collected, click on the collection file path to download the file.
In the Collect Diagnostics page, specify the Job ID for the diagnostics data collection. Optionally, specify a tag and a description for the collection. The details of the Job ID are displayed. Click Collect to start the diagnostics data collection.
You can also collect diagnostics from the Activity page, by selecting Collect Diagnostics from the Actions drop down for a specific job. Click Collect to start the diagnostics data collection.
To delete a diagnostic collection, from the Diagnostic Collection page, select the specific collection, and click Delete.
 This diagnostic collection feature does not replace the odaadmcli manage
                    diagcollect command. You can use the  odaadmcli manage
                    diagcollect command also to enable diagnostics collections,
                independently of this new feature from the BUI. The odaadmcli manage
                    diagcollect command and the diagnostics collection from BUI use the
                    tfactl command internally. The diagnostics collection from BUI
                is aimed to collect other data from DCS metadata that is not collected through
                    tfactl and provide greater context for root cause analysis of
                related DCS jobs failures.
                     
Parent topic: Troubleshooting Oracle Database Appliance
Resolving Errors When Updating DCS Components During Patching
Understand how to troubleshoot errors when updating DCS components during patching.
.
About DCS Components
odacli update-dcscomponents command
                during patching, pre-checks for MySQL installation are automatically verified before
                update of Oracle HAMI, MySQL, and DCS components. If any of the pre-checks fail,
                then the command errors out with a reference to the pre-check report log file
                location
                    /opt/oracle/dcs/log/jobfiles/jobId/dcscomponentsPreCheckReport.log.
                Review the pre-check report and take corrective actions and then rerun the
                    odacli update-dcscomponents command. If there are no pre-check
                errors, then the patching process proceeds with updating Oracle HAMI, MySQL, and DCS
                components such as the DCS Agent, DCS CLI, and DCS Controller.
                        Note:
Run theodacli
                        update-dcsadmin command prior to running the odacli
                        update-dcscomponents command.
                        When the odacli update-dcscomponents command completes
                successfully:
                     
The command output is as follows:
# ./odacli update-dcscomponents -v 19.27.0.0.0            
{
  "jobId" : "3ac3667a-fa22-40b6-a832-504a56aa3fdc",
  "status" : "Success",
  "message" : "Update-dcscomponents is successful on all the node(s):DCS-Agent
shutdown is successful. MySQL upgrade is done before. Metadata migration is
successful. Agent rpm upgrade is successful. DCS-CLI rpm upgrade is successful.
DCS-Controller rpm upgrade is succ",
  "reports" : null,
  "createTimestamp" : "March 8, 2025 02:37:37 AM CST",
  "description" : "Update-dcscomponents job completed and is not part of Agent
job list",
  "updatedTime" : "March 8, 2025 02:39:10 AM CST"
}The pre-check report log file at the location
                        /opt/oracle/dcs/log/jobfiles/jobId/dcscomponentsPreCheckReport.log
                contains the following:
                     
Pre-check Name: Space check
Status: Success
Comments: Required space 3 GB is available in /opt
Pre-check Name: Port check
Status: Success
Comments: Port 3306 is available for running ODA MySQL
Pre-check Name: ODA MySQL rpm installation dry-run check
Status: Success
Comments: ODA MySQL rpm dry-run passed
Pre-check Name: Check for the existence of MySQL connector/J library
Status: Success
Comments: ODA MySQL connector/J library found
Pre-check Name: Check for the existence of Metadata migration utility
Status: Success
Comments: Metadata migration utility found
dcs-admin version: 
Pre-check Name: dcs-admin version validation
Status: Success
Comments: dcs-admin is already updated :19.27.0.0.0
Config File Exist dcscontroller: 
Pre-check Name: Check DCS config files exists for dcscontroller
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-controller.yml and /opt/oracle/dcs/conf/dcs-controller-logback.xml exist
 
Config File Exist dcsagent: 
Pre-check Name: Check DCS config files exists for dcsagent
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-agent.yml and /opt/oracle/dcs/conf/dcs-agent-logback.xml exist
Validate scheduler cron expressions:
Pre-check Name: Validate scheduler cron expressions
Status: Success
Comments: Scheduler cron expressions for existing job schedules are up to date When the odacli update-dcscomponents command fails:
                     
On Oracle Database Appliance single-node systems, the command output is as follows:
# ./odacli update-dcscomponents -v 19.27.0.0.0            
DCS-10008:Failed to update DCScomponents: 19.26.0.0.0
Internal error while patching the DCS components :
DCS-10231:Cannot proceed. Pre-checks for update-dcscomponents failed. Refer to
/opt/oracle/dcs/log/jobfiles/jobId/dcscomponentsPreCheckReport.log
on node 0 for details.On Oracle Database Appliance high-availability systems, the command output is as follows:
# ./odacli update-dcscomponents -v 19.27.0.0.0            
Internal error while patching the DCS components :
DCS-10231:Cannot proceed. Pre-checks for update-dcscomponents failed. Refer to
/opt/oracle/dcs/log/jobfiles/jobId/dcscomponentsPreCheckReport.log
on node 0 and /opt/oracle/dcs/log/jobfiles/jobId/dcscomponentsPreCheckReport.log
on node 1 for details.The command runs all pre-checks one by one, and errors out at the end if
                any of the pre-checks is marked as Failed. When a pre-check fails, the error message
                is displayed on to the console along with the reference to pre-check report log
                location. The pre-check report log file is at the location
                        /opt/oracle/dcs/log/jobfiles/jobId/dcscomponentsPreCheckReport.log.
                     
Pre-check Name: Space check
Status: Failed
Comments: Available space in /opt is 2 GB but minimum required space in /opt is 3 GB 
Pre-check Name: Port check
Status: Success
Comments: Port 3306 is available for running ODA MySQL
Pre-check Name: ODA MySQL rpm installation dry-run check
Status: Success
Comments: ODA MySQL rpm dry-run passed
Pre-check Name: Check for the existence of MySQL connector/J library
Status: Success
Comments: ODA MySQL connector/J library found
Pre-check Name: Check for the existence of Metadata migration utility
Status: Success
Comments: Metadata migration utility found
Pre-check Name: dcs-admin version validation
Status: Success
Comments: dcs-admin is already updated :19.20.0.0.0
Config File Exist dcscontroller: 
Pre-check Name: Check DCS config files exists for dcscontroller
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-controller.yml and /opt/oracle/dcs/conf/dcs-controller-logback.xml exist
 
Config File Exist dcsagent: 
Pre-check Name: Check DCS config files exists for dcsagent
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-agent.yml and /opt/oracle/dcs/conf/dcs-agent-logback.xml exist
Validate scheduler cron expressions:
Pre-check Name: Validate scheduler cron expressions
Status: Success
Comments: Scheduler cron expressions for existing job schedules are up to dateWhen the odacli update-dcscomponents command fails due to space
                check error:
                     
The pre-check report log contains the following:
Pre-check Name: Space check
Status: Failed
Comments: Available space in /opt is 2 GB but minimum required space in /opt is 3 GB 
Pre-check Name: Port check
Status: Success
Comments: Port 3306 is available for running ODA MySQL
Pre-check Name: ODA MySQL rpm installation dry-run check
Status: Success
Comments: ODA MySQL rpm dry-run passed
Pre-check Name: Check for the existence of MySQL connector/J library
Status: Success
Comments: ODA MySQL connector/J library found
Pre-check Name: Check for the existence of Metadata migration utility
Status: Success
Comments: Metadata migration utility found
Pre-check Name: dcs-admin version validation
Status: Success
Comments: dcs-admin is already updated :19.20.0.0.0
Config File Exist dcscontroller: 
Pre-check Name: Check DCS config files exists for dcscontroller
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-controller.yml and /opt/oracle/dcs/conf/dcs-controller-logback.xml exist
 
Config File Exist dcsagent: 
Pre-check Name: Check DCS config files exists for dcsagent
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-agent.yml and /opt/oracle/dcs/conf/dcs-agent-logback.xml exist
Validate scheduler cron expressions:
Pre-check Name: Validate scheduler cron expressions
Status: Success
Comments: Scheduler cron expressions for existing job schedules are up to dateWhen the odacli update-dcscomponents command fails due to port
                check error:
                     
The pre-check report log contains the following:
Pre-check Name: Space check
Status: Success
Comments: Required space 3 GB is available in /opt
Pre-check Name: Port check
Status: Failed
Comments: No port found in the range ( 3306 to 65535 )
Pre-check Name: ODA MySQL rpm installation dry-run check
Status: Success
Comments: ODA MySQL rpm dry-run passed
Pre-check Name: Check for the existence of MySQL connector/J library
Status: Success
Comments: ODA MySQL connector/J library found
Pre-check Name: Check for the existence of Metadata migration utility
Status: Success
Comments: Metadata migration utility found
Pre-check Name: dcs-admin version validation
Status: Success
Comments: dcs-admin is already updated :19.20.0.0.0
Config File Exist dcscontroller: 
Pre-check Name: Check DCS config files exists for dcscontroller
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-controller.yml and /opt/oracle/dcs/conf/dcs-controller-logback.xml exist
 
Config File Exist dcsagent: 
Pre-check Name: Check DCS config files exists for dcsagent
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-agent.yml and /opt/oracle/dcs/conf/dcs-agent-logback.xml exist
Validate scheduler cron expressions:
Pre-check Name: Validate scheduler cron expressions
Status: Success
Comments: Scheduler cron expressions for existing job schedules are up to dateWhen the odacli update-dcscomponents command fails due to MySQL
                RPM installation dry-run check error:
                     
The pre-check report log contains the following:
Pre-check Name: Space check
Status: Success
Comments: Required space 3 GB is available in /opt
Pre-check Name: Port check
Status: Success
Comments: Port 3306 is available for running ODA MySQL
Pre-check Name: ODA MySQL rpm installation dry-run check
Status: Failed
Comments: ODA MySQL rpm dry-run failed. Failed due to the following error :
Exception details are displayed below
Pre-check Name: Check for the existence of MySQL connector/J library
Status: Success
Comments: ODA MySQL connector/J library found
Pre-check Name: Check for the existence of Metadata migration utility
Status: Success
Comments: Metadata migration utility found
Pre-check Name: dcs-admin version validation
Status: Success
Comments: dcs-admin is already updated :19.20.0.0.0
Config File Exist dcscontroller: 
Pre-check Name: Check DCS config files exists for dcscontroller
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-controller.yml and /opt/oracle/dcs/conf/dcs-controller-logback.xml exist
 
Config File Exist dcsagent: 
Pre-check Name: Check DCS config files exists for dcsagent
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-agent.yml and /opt/oracle/dcs/conf/dcs-agent-logback.xml exist
Validate scheduler cron expressions:
Pre-check Name: Validate scheduler cron expressions
Status: Success
Comments: Scheduler cron expressions for existing job schedules are up to dateWhen the odacli update-dcscomponents command fails due to MySQL
                connector/J library check error:
                     
The pre-check report log contains the following:
Pre-check Name: Space check
Status: Success
Comments: Required space 3 GB is available in /opt
Pre-check Name: Port check
Status: Success
Comments: Port 3306 is available for running ODA MySQL
Pre-check Name: ODA MySQL rpm installation dry-run check
Status: Success
Comments: ODA MySQL rpm dry-run passed
Pre-check Name: Check for the existence of MySQL connector/J library
Status: Failed
Comments: MySQL connector/J library does not exist. Ensure update-repository with latest serverzip bundles ran first without any issues prior to running update-dcscomponents
Pre-check Name: Check for the existence of Metadata migration utility
Status: Success
Comments: Metadata migration utility found
dcs-admin version: 
Pre-check Name: dcs-admin version validation
Status: Success
Comments: dcs-admin is already updated :19.20.0.0.0
Config File Exist dcscontroller: 
Pre-check Name: Check DCS config files exists for dcscontroller
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-controller.yml and /opt/oracle/dcs/conf/dcs-controller-logback.xml exist
 
Config File Exist dcsagent: 
Pre-check Name: Check DCS config files exists for dcsagent
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-agent.yml and /opt/oracle/dcs/conf/dcs-agent-logback.xml exist
Validate scheduler cron expressions:
Pre-check Name: Validate scheduler cron expressions
Status: Success
Comments: Scheduler cron expressions for existing job schedules are up to dateWhen the odacli update-dcscomponents command fails due to
                Metadata migration utility check error:
                     
The pre-check report log contains the following:
Pre-check Name: Space check
Status: Success
Comments: Required space 3 GB is available in /opt
Pre-check Name: Port check
Status: Success
Comments: Port 3306 is available for running ODA MySQL
Pre-check Name: ODA MySQL rpm installation dry-run check
Status: Success
Comments: ODA MySQL rpm dry-run passed
Pre-check Name: Check for the existence of MySQL connector/J library
Status: Success
Comments: ODA MySQL connector/J library found
Pre-check Name: Check for the existence of Metadata migration utility
Status: Failed
Comments: Metadata migration utility does not exist. Ensure update-repository with latest serverzip bundles ran first without any issues prior to running update-dcscomponents.
dcs-admin version: 
Pre-check Name: dcs-admin version validation
Status: Success
Comments: dcs-admin is already updated :19.20.0.0.0
Config File Exist dcscontroller: 
Pre-check Name: Check DCS config files exists for dcscontroller
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-controller.yml and /opt/oracle/dcs/conf/dcs-controller-logback.xml exist
 
Config File Exist dcsagent: 
Pre-check Name: Check DCS config files exists for dcsagent
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-agent.yml and /opt/oracle/dcs/conf/dcs-agent-logback.xml exist
Validate scheduler cron expressions:
Pre-check Name: Validate scheduler cron expressions
Status: Success
Comments: Scheduler cron expressions for existing job schedules are up to dateWhen the odacli
                    update-dcscomponents command displays a warning due to scheduler cron
                expression:
                     
When patching from Oracle Database Appliance release 19.19 or earlier to
                the latest release, and you run the odacli update-dcscomponents
                command, there may be a warning in the precheck report log file if the default cron
                expressions from the existing list of job schedules are modified. The pre-check
                report log contains the following:
                     
Pre-check Name: Space check
Status: Success
Comments: Required space 3 GB is available in /opt
Pre-check Name: Port check
Status: Success
Comments: Port 3306 is available for running ODA MySQL
Pre-check Name: ODA MySQL rpm installation dry-run check
Status: Success
Comments: ODA MySQL rpm dry-run passed
Pre-check Name: Check for the existence of MySQL connector/J library
Status: Success
Comments: ODA MySQL connector/J library found
Pre-check Name: Check for the existence of Metadata migration utility
Status: Success
Comments: Metadata migration utility found
dcs-admin version: 
Pre-check Name: dcs-admin version validation
Status: Success
Comments: dcs-admin is already updated :19.20.0.0.0
Config File Exist dcscontroller: 
Pre-check Name: Check DCS config files exists for dcscontroller
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-controller.yml and /opt/oracle/dcs/conf/dcs-controller-logback.xml exist
 
Config File Exist dcsagent: 
Pre-check Name: Check DCS config files exists for dcsagent
Status: Success
Comments: Files /opt/oracle/dcs/conf/dcs-agent.yml and /opt/oracle/dcs/conf/dcs-agent-logback.xml exist
Validate scheduler cron expressions:
Pre-check Name: Validate scheduler cron expressions
Status: Warning
Comments: Following cron expressions in the scheduler were modified from their default values. Starting 19.20, DCS Agent converts 7 fields cron expression into 6 fields cron expression. No further action needed.
Schedule ID : 3f671ee7-1a03-43fd-b98b-ce33eb09de08 , Custom cron expression : 10
25 * 1/1 * ? 2023Note that the Status: Warning means the
                    update-dcscomponents pre-check has detected custom cron
                expressions from the existing list of job schedules. The DCS agent automatically
                converts from the 7 fields custom cron expression to the equivalent 6 fields cron
                expression after patching DCS components.
                     
Parent topic: Troubleshooting Oracle Database Appliance
Viewing Component Information on the Appliance
View details of all the components installed on the appliance, and the RPM drift information.
Collecting and Viewing the Bill of Materials in the Browser User Interface
Use the Appliance tab in the Browser User Interface to collect and view information about your deployment and the installed components. The Advanced Information tab displays information about the following components:
- 
                           Grid Infrastructure Version, and the home directory 
- 
                           Database Version, Home location, and Edition 
- 
                           Location and details about the databases configured 
- 
                           All patches applied to the appliance 
- 
                           Firmware Controller and Disks 
- 
                           ILOM information 
- 
                           BIOS version 
- 
                           List of RPMs 
In the List of RPMs section, click Show and then click RPM Drift to view the differences between the RPMs installed on the appliance, and the RPMs shipped in the latest Oracle Database Appliance Patch Bundle Update release.
Click Collect Bill of Materials to initiate a collection and submit the job. The job ID is displayed. After the collection is complete, click Refresh to refresh the information.
Click Download to save the components report. You can use this report to help diagnose any deployment issues.
Viewing the Bill of Materials from the Command Line
The bill of materials is also available through the command line for bare metal and virtualized platforms deployments. The information about the installed components is collected according to a set schedule, and stored in the location /opt/oracle/dcs/Inventory/ for bare metal deployments and in the /opt/oracle/oak/Inventory/ directory for virtualized platforms. The file is stored in the format oda_bom_TimeStamp.json. Use the command describe-system to view the bill of materials on the command line. See the Oracle Database Command-Line Interface chapter for command options and usage notes.
                     
Example 20-1 Example Command to View the Bill of Materials from the Command Line for Bare Metal Deployments
# odacli describe-system -b
ODA Components Information 
------------------------------
Component Name                Component Details                                            
---------------               ----------------------------------------------------------------------------------------------- 
NODE                          Name : oda1 
                              Domain Name : testdomain.com 
                              Time Stamp : April 21, 2020 6:21:15 AM UTC 
  
RPMS                          Installed RPMS : abrt-2.1.11-55.0.1.el7.x86_64,
                                               abrt-addon-ccpp-2.1.11-55.0.1.el7.x86_64,
                                               abrt-addon-kerneloops-2.1.11-55.0.1.el7.x86_64,
                                               abrt-addon-pstoreoops-2.1.11-55.0.1.el7.x86_64,
                                               abrt-addon-python-2.1.11-55.0.1.el7.x86_64,
                                               abrt-addon-vmcore-2.1.11-55.0.1.el7.x86_64,
                                               abrt-addon-xorg-2.1.11-55.0.1.el7.x86_64,
                                               abrt-cli-2.1.11-55.0.1.el7.x86_64,
                                               abrt-console-notification-2.1.11-55.0.1.el7.x86_64,
                                               abrt-dbus-2.1.11-55.0.1.el7.x86_64,
                                               abrt-libs-2.1.11-55.0.1.el7.x86_64,
                                               abrt-python-2.1.11-55.0.1.el7.x86_64,
                                               abrt-tui-2.1.11-55.0.1.el7.x86_64,
                                               acl-2.2.51-14.el7.x86_64,
                                               adwaita-cursor-theme-3.28.0-1.el7.noarch,
                                               adwaita-icon-theme-3.28.0-1.el7.noarch,
                                               aic94xx-firmware-30-6.el7.noarch,
                                               aide-0.15.1-13.0.1.el7.x86_64,
                                               alsa-firmware-1.0.28-2.el7.noarch,
                                               alsa-lib-1.1.8-1.el7.x86_64,
                                               alsa-tools-firmware-1.1.0-1.el7.x86_64,
                                               at-3.1.13-24.el7.x86_64,
                                               at-spi2-atk-2.26.2-1.el7.x86_64,
                                               at-spi2-core-2.28.0-1.el7.x86_64,
                                               atk-2.28.1-1.el7.x86_64,
                                               attr-2.4.46-13.el7.x86_64,
                                               audit-2.8.5-4.el7.x86_64,
                                               audit-libs-2.8.5-4.el7.x86_64,
                                               audit-libs-python-2.8.5-4.el7.x86_64,
                                               augeas-libs-1.4.0-9.el7.x86_64,
                                               authconfig-6.2.8-30.el7.x86_64,
                                               autogen-libopts-5.18-5.el7.x86_64,
                                               avahi-libs-0.6.31-19.el7.x86_64,
                                               basesystem-10.0-7.0.1.el7.noarch,
                                               bash-4.2.46-33.el7.x86_64,
                                               bash-completion-2.1-6.el7.noarch,
                                               bc-1.06.95-13.el7.x86_64,
                                               bind-export-libs-9.11.4-9.P2.el7.x86_64,
                                               bind-libs-9.11.4-9.P2.el7.x86_64,
                                               bind-libs-lite-9.11.4-9.P2.el7.x86_64,
                                               bind-license-9.11.4-9.P2.el7.noarch,
                                               bind-utils-9.11.4-9.P2.el7.x86_64,
                                               binutils-2.27-41.base.0.7.el7_7.2.x86_64,
                                               biosdevname-0.7.3-2.el7.x86_64,
                                               blktrace-1.0.5-9.el7.x86_64,
                                               bnxtnvm-1.40.10-1.x86_64,
                                               boost-date-time-1.53.0-27.el7.x86_64,
                                               boost-filesystem-1.53.0-27.el7.x86_64,
                                               boost-iostreams-1.53.0-27.el7.x86_64,
....
....
....
Example 20-2 Example Command to View the Bill of Materials from the Command Line for Virtualized Platforms
# oakcli describe-system -bExample 20-3 Example Command to View the Bill of Materials Report from the Stored Location
# ls -la /opt/oracle/dcs/Inventory/
total 264
-rw-r--r-- 1 root root 83550 Apr 26 05:41 oda_bom_2018-04-26_05-41-36.jsonParent topic: Troubleshooting Oracle Database Appliance
Errors When Logging into the Browser User Interface
If you have problems logging into the Browser User Interface, then it may be due to your browser or credentials.
Note:
Oracle Database Appliance uses self-signed certificates. Your browser determines how you log into the Browser User Interface. Depending on the browser and browser version, you may receive a warning or error that the certificate is invalid or not trusted because it is self-signed, or that the connection is not private. Ensure that you accept the self-signed certificate for the agent and Browser User Interface.Follow these steps to log into the Browser User Interface:
Note:
If you have any issues logging into the Oracle Database Appliance Browser User Interface on browsers such as macOS Catalina and Google Chrome, then you may need to use any workaround as described on the official site for the product.Errors when re-imaging Oracle Database Appliance
Understand how to troubleshoot errors that occur when re-imaging Oracle Database Appliance.
If re-imaging Oracle Database Appliance fails, with old header issues such as errors in storage discovery, or in running GI root scripts, or disk group RECO creation, then use the force mode with cleanup.pl.
                  
# cleanup.pl -fTo ensure that re-imaging is successful, remove the old headers from the storage disks by running the secure erase tool. Verify that the OAK/ASM headers are removed.
# cleanup.pl -erasedata
# cleanup.pl -checkHeaderRetry the re-imaging operation.
Related Topics
Parent topic: Troubleshooting Oracle Database Appliance
Using Oracle Autonomous Health Framework for Running Diagnostics
Oracle Autonomous Health Framework collects and analyzes diagnostic data collected, and proactively identifies issues before they affect the health of your system.
- About Installing Oracle Autonomous Health Framework
 Oracle Autonomous Health Framework is installed automatically when you provision or patch to Oracle Database Appliance release 19.27.
- Using the Oracle ORAchk Health Check Tool
 Run Oracle ORAchk to audit configuration settings and check system health.
- Generating and Viewing Oracle ORAchk Health Check Tool Reports in the Browser User Interface
 Generate Oracle ORAchk Health Check Tool reports using the Browser User Interface.
- Generating and Viewing Database Security Assessment Reports in the Browser User Interface
 Generate and view Database Security Assessment Reports using the Browser User Interface.
- Running Oracle Trace File Analyzer (TFA) Collector Commands
 Understand the installed location oftfactland the options for the command.
- Sanitizing Sensitive Information in Diagnostic Collections
 Oracle Autonomous Health Framework uses Adaptive Classification and Redaction (ACR) to sanitize sensitive data.
- Enabling Adaptive Classification and Redaction (ACR)
 Oracle Database Appliance supports Adaptive Classification and Redaction (ACR) to sanitize sensitive data.
- Sanitizing Sensitive Information in Oracle Trace File Analyzer Collections
 You can redact (sanitize or mask) Oracle Trace File Analyzer diagnostic collections.
- Redacting and Sanitizing Entities in the BUI
 Enable and disable trace file redaction, redact files, and show or hide sanitized entities using the Browser User Interface.
- Sanitizing Sensitive Information in Oracle ORAchk Output
 You can sanitize Oracle ORAchk output.
Parent topic: Troubleshooting Oracle Database Appliance
About Installing Oracle Autonomous Health Framework
Oracle Autonomous Health Framework is installed automatically when you provision or patch to Oracle Database Appliance release 19.27.
When you provision or patch your appliance to Oracle Database Appliance
            release 19.27, Oracle Autonomous Health Framework is
            installed in the path /opt/oracle/dcs/oracle.ahf.
                     
[root@oak ~]# rpm -q oracle-ahf
oracle-ahf-193000-########.x86_64Note:
When you provision or patch to Oracle Database Appliance release 19.27, Oracle Autonomous Health Framework automatically provides Oracle ORAchk Health Check Tool and Oracle Trace File Analyzer Collector.- Operating system kernel parameters and packages
- Oracle Database Database parameters, and other database configuration settings
- Oracle Grid Infrastructure, which includes Oracle Clusterware and Oracle Automatic Storage Management
- Encapsulation of diagnostic data collection for all Oracle Grid Infrastructure and Oracle RAC components on all cluster nodes into a single command, which you run from a single node
- Option to "trim" diagnostic files during data collection to reduce data upload size
- Options to isolate diagnostic data collection to a given time period, and to a particular product component, such as Oracle ASM, Oracle Database, or Oracle Clusterware
- Centralization of collected diagnostic output to a single node in Oracle Database Appliance, if desired
- On-Demand Scans of all log and trace files for conditions indicating a problem
- Real-Time Scan Alert Logs for conditions indicating a problem (for example, Database Alert Logs, Oracle ASM Alert Logs, and Oracle Clusterware Alert Logs)
Using the Oracle ORAchk Health Check Tool
Run Oracle ORAchk to audit configuration settings and check system health.
Note:
Before running ORAchk, check for the latest version of Oracle Autonomous Health Framework, and download and install it. See My Oracle Support Note 2550798.1 for more information about downloading and installing the latest verion of Oracle Autonomous Health Framework.Running ORAchk on Oracle Database Appliance 19.27 Baremetal Systems for New Installation
When you provision or upgrade to Oracle Database Appliance 19.27, ORAchk is installed using Oracle Autonomous Framework in the
                directory /opt/oracle/dcs/oracle.ahf. 
                        
[root@oak bin]# orachkWhen all checks are finished, a detailed report is available. The output displays the location of the report in an HTML format and the location of a zip file if you want to upload the report. For example, you can choose the filter to show failed checks only, show checks with a Fail, Warning, Info, or Pass status, or any combination.
Review the Oracle Database Appliance Assessment Report and system health and troubleshoot any issues that are identified. The report includes a summary and filters that enable you to focus on specific areas.
Running ORAchk on Oracle Database Appliance 19.27 Virtualized Platform
When you provision or upgrade to Oracle Database Appliance 19.27, ORAchk is installed using Oracle Autonomous
                Framework in the directory /opt/oracle.ahf. 
                        
orachk, use the following
                command:[root@oak bin]# oakcli orachkGenerating and Viewing Oracle ORAchk Health Check Tool Reports in the Browser User Interface
Generate Oracle ORAchk Health Check Tool reports using the Browser User Interface.
Generating and Viewing Database Security Assessment Reports in the Browser User Interface
Generate and view Database Security Assessment Reports using the Browser User Interface.
Running Oracle Trace File Analyzer (TFA) Collector Commands
Understand the installed location of tfactl and the options
        for the command.
                     
About Using tfactl to Collect Diagnostic Information
When you provision or upgrade to Oracle Database Appliance 19.27, Oracle Trace File Analyzer (TFA) Collector is
                                installed in the directory
                                        /opt/oracle.ahf/bin/tfactl. You can
                                invoke the command line utility for TFA, tfactl
                                from the directory /opt/oracle.ahf/bin/tfactl,
                                or simply type tfactl.
                        
You can use the following command options to run tfactl:
                        
 /opt/oracle.ahf/bin/tfactl diagcollect -ips|-oda|-odalite|-dcs|-odabackup|
-odapatching|-odadataguard|-odaprovisioning|-odaconfig|-odasystem|-odastorage|-database|
-asm|-crsclient|-dbclient|-dbwlm|-tns|-rhp|-procinfo|-crs|-cha|-wls|
-emagent|-oms|-ocm|-emplugins|-em|-acfs|-install|-cfgtools|-os|-ashhtml|-ashtext|
-awrhtml|-awrtext -mask -sanitizeTable 20-1 Command Options for tfactl Tool
| Option | Description | 
|---|---|
| -h | (Optional) Describes all the options for this command. | 
| -ips | (Optional) Use this option to view the diagnostic logs for the specified component. | 
| -oda | (Optional) Use this option to view the logs for the entire Appliance. | 
| -odalite | (Optional) Use this option to view the diagnostic logs for the odalite component. | 
| -dcs | (Optional) Use this option to view the DCS log files. | 
| -odabackup | (Optional) Use this option to view the diagnostic logs for the backup components for the Appliance. | 
| -odapatching | (Optional) Use this option to view the diagnostic logs for patching components of the Appliance. | 
| -odadataguard | (Optional) Use this option to view the diagnostic logs for Oracle Data Guard component of the Appliance. | 
| -odaprovisioning | (Optional) Use this option to view provisioning logs for the Appliance. | 
| -odaconfig | (Optional) Use this option to view configuration-related diagnostic logs. | 
| -odasystem | (Optional) Use this option to view system information. | 
| -odastorage | (Optional) Use this option to view the diagnostic logs for the Appliance storage. | 
| -database | (Optional) Use this option to view database-related log files. | 
| -asm | (Optional) Use this option to view the diagnostic logs for the Appliance. | 
| -crsclient | (Optional) Use this option to view the diagnostic logs for the Appliance. | 
| -dbclient | (Optional) Use this option to view the diagnostic logs for the Appliance. | 
| -dbwlm | (Optional) Use this option to view the diagnostic logs for the specified component. | 
| -tns | (Optional) Use this option to view the diagnostic logs for TNS. | 
| -rhp | (Optional) Use this option to view the diagnostic logs for Rapid Home Provisioning. | 
| -crs | (Optional) Use this option to view the diagnostic logs for Oracle Clusterware. | 
| -cha | (Optional) Use this option to view the diagnostic logs for the Cluster Health Monitor. | 
| -wls | (Optional) Use this option to view the diagnostic logs for Oracle WebLogic Server. | 
| -emagent | (Optional) Use this option to view the diagnostic logs for the Oracle Enterprise Manager agent. | 
| -oms | (Optional) Use this option to view the diagnostic logs for the Oracle Enterprise Manager Management Service. | 
| -ocm | (Optional) Use this option to view the diagnostic logs for the specified component. | 
| -emplugins | (Optional) Use this option to view the diagnostic logs for Oracle Enterprise Manager plug-ins. | 
| -em | (Optional) Use this option to view the diagnostic logs for Oracle Enterprise Manager deployment. | 
| -acfs | (Optional) Use this option to view the diagnostic logs for Oracle ACFS storage. | 
| -install | (Optional) Use this option to view the diagnostic logs for installation. | 
| -cfgtools | (Optional) Use this option to view the diagnostic logs for the configuration tools. | 
| -os | (Optional) Use this option to view the diagnostic logs for the operating system. | 
| -ashhtml | (Optional) Use this option to view the diagnostic logs for the specified component. | 
| -ashtext | (Optional) Use this option to view the diagnostic logs for the Appliance. | 
| -awrhtml | (Optional) Use this option to view the diagnostic logs for the Appliance. | 
| -awrtext | (Optional) Use this option to view the diagnostic logs for the specified component. | 
| 
 | (Optional) Use this option to choose to mask sensitive data in the log collection. | 
| 
 | (Optional) Use this option to choose to sanitize (redact) sensitive data in the log collection. | 
Usage Notes
You can use Trace File Collector (the tfactl command) to collect all log files for the Oracle Database Appliance components.
                        
You can also use the command odaadmcli manage
                                        diagcollect, with similar command options, to
                                collect the same diagnostic information.
                        
For more information about using the -mask and
                                        -sanitize options, see the next topic.
                        
Sanitizing Sensitive Information in Diagnostic Collections
Oracle Autonomous Health Framework uses Adaptive Classification and Redaction (ACR) to sanitize sensitive data.
After collecting copies of diagnostic data, Oracle Trace File Analyzer and Oracle ORAchk use Adaptive Classification and Redaction (ACR) to sanitize sensitive data in the collections. ACR uses a Machine Learning based engine to redact a pre-defined set of entity types in a given set of files. ACR also sanitizes or masks entities that occur in files and directory names. Sanitization replaces a sensitive value with random characters. Masking replaces a sensitive value with a series of asterisks ("*").
- Host names
- IP addresses
- MAC addresses
- Oracle Database names
- Tablespace names
- Service names
- Ports
- Operating system user names
ACR also masks user data from the database appearing in block and redo dumps.
Example 20-4 Block dumps before redaction
14A533F40 00000000 00000000 00000000 002C0000 [..............,.] 
14A533F50 35360C02 30352E30 31322E37 380C3938 [..650.507.2189.8] 
14A533F60 31203433 37203332 2C303133 360C0200 [34 123 7310,...6] Example 20-5 Block dumps after redaction
14A533F40 ******** ******** ******** ******** [****************]
14A533F50 ******** ******** ******** ******** [****************]
14A533F60 ******** ******** ******** ******** [****************] Example 20-6 Redo dumps before redaction
col 74: [ 1] 80
col 75: [ 5] c4 0b 19 01 1f
col 76: [ 7] 78 77 06 16 0c 2f 26 Example 20-7 Redo dumps after redaction
col 74: [ 1] **
col 75: [ 5] ** ** ** ** **
col 76: [ 7] ** ** ** ** ** ** **Redaction of Literal Values in SQL Statements in AWR, ASH and ADDM Reports
Automatic Workload Repository (AWR), Active Session History (ASH), and Automatic Database Diagnostic Monitor (ADDM) reports are HTML files, which contain sensitive entities such as hostnames, database names, and service names in the form of HTML tables. In addition to these sensitive entities, they also contain SQL statements, that can contain bind variables or literal values from tables. These literal values can be sensitive personal information (PI) stored in databases. ACR processes such reports to identify and redact both usual sensitive entities and literal values present in the SQL statements.
Sanitizing Sensitive Information Using odaadmcli Command
odaadmcli manage diagcollect command to collect
                diagnostic logs for Oracle Database Appliance components. During collection, ACR can
                be used to redact (sanitize or mask) the diagnostic
                logs.odaadmcli manage diagcollect [--dataMask|--dataSanitize]In the command, the --dataMask option blocks out the
                sensitive data in all collections, for example, replaces myhost1
                with *******. The default is None. The
                    --dataSanitize option replaces the sensitive data in all
                collections with random characters, for example, replaces myhost1
                with orzhmv1. The default is None.
                        
Enabling Adaptive Classification and Redaction (ACR)
Oracle Database Appliance supports Adaptive Classification and Redaction (ACR) to sanitize sensitive data.
After collecting copies of diagnostic data, Oracle Database Appliance use Adaptive
                Classification and Redaction (ACR) to sanitize sensitive data in the collections.
                You can use the commands odacli enable-acr and odacli
                    disable-acr to enable or disable ACR across both nodes, not just on the
                local node.
                        
See Also:
For more information about setting up the staging server for Adaptive Classification and Redaction (ACR), see My Oracle Support note 2882798.1.Example 20-8 Describing current status of ACR
bash-4.2# odacli describe-acr
Trace File Redaction: EnabledExample 20-9 Enabling ACR:
bash-4.2# odacli enable-acr
Job details                                                      
----------------------------------------------------------------
                ID:  12bbf784-610a-40a8-b409-e74c58bc35aa
               Description:  Enable ACR job
                Status:  Created
                Created:  April 8, 2021 3:04:13 AM PDTExample 20-10 Disabling ACR
bash-4.2# odacli disable-acr
Job details                                                      
----------------------------------------------------------------
                ID:  1d69f8b3-3989-4192-bbb9-6518e425061a
               Description:  Disable ACR job
                Status:  Created
                Created:  April 8, 2021 3:04:13 AM PDTExample 20-11 Enabling ACR during provisioning of the appliance
You can enable ACR during provisioning of the appliance by adding the
                    acr option to the JSON file used for provisioning. Specify
                    true or false for the field
                    acrEnable in the JSON file. If the acr option
                is not specified, then ACR is disabled.
                        
"acr": {
    "acrEnable": true
}Related Topics
Sanitizing Sensitive Information in Oracle Trace File Analyzer Collections
You can redact (sanitize or mask) Oracle Trace File Analyzer diagnostic collections.
Enabling Automatic Redaction
To enable automatic redaction, use the command:
tfactl set redact=[mask|sanitize|none] In the command, the -mask option blocks out the
                sensitive data in all collections, for example, replaces myhost1
                with *******. The -sanitize option replaces the
                sensitive data in all collections with random characters, for example, replaces
                    myhost1 with orzhmv1. The
                    none option does not mask or sanitize sensitive data in
                collections. The default is none.
                        
Enabling On-Demand Redaction
You can redact collections on-demand, for example, tfactl diagcollect -srdc
                    ORA-00600 -mask or tfactl diagcollect -srdc ORA-00600 -sanitize.
                        
- To mask sensitive data in all
                    collections:tfactl set redact=mask
- To sanitize sensitive data in all
                    collections:tfactl set redact=sanitize
Example 20-12 Masking or Sanitizing Sensitive Data in a Specific Collection
tfactl diagcollect -srdc ORA-00600 -mask
tfactl diagcollect -srdc ORA-00600 -sanitizeRedacting and Sanitizing Entities in the BUI
Enable and disable trace file redaction, redact files, and show or hide sanitized entities using the Browser User Interface.
Sanitizing Sensitive Information in Oracle ORAchk Output
You can sanitize Oracle ORAchk output.
To sanitize Oracle ORAchk output, include the -sanitize option, for
                example, orachk -profile asm -sanitize. You can also sanitize post
                process by passing in an existing log, HTML report, or a zip file, for example,
                    orachk -sanitize file_name.
                        
Example 20-13 Sanitizing Sensitive Information in Specific Collection IDs
orachk -sanitize comma_delimited_list_of_collection_IDsExample 20-14 Sanitizing a File with Relative Path
orachk -sanitize new/orachk_node061919_053119_001343.zip 
orachk is sanitizing
/scratch/testuser/may31/new/orachk_node061919_053119_001343.zip. Please wait...
Sanitized collection is:
/scratch/testuser/may31/orachk_aydv061919_053119_001343.zip
orachk -sanitize ../orachk_node061919_053119_001343.zip 
orachk is sanitizing
/scratch/testuser/may31/../orachk_node061919_053119_001343.zip. Please wait...
Sanitized collection is:
/scratch/testuser/may31/orachk_aydv061919_053119_001343.zipExample 20-15 Sanitizing Oracle Autonomous Health Framework Debug Log
orachk -sanitize new/orachk_debug_053119_023653.log
orachk is sanitizing /scratch/testuser/may31/new/orachk_debug_053119_023653.log.
Please wait...
Sanitized collection is: /scratch/testuser/may31/orachk_debug_053119_023653.logExample 20-16 Running Full Sanity Check
orachk -localonly -profile asm -sanitize -silentforce
Detailed report (html) - 
/scratch/testuser/may31/orachk_node061919_053119_04448/orachk_node061919_053119_04448.html
orachk is sanitizing /scratch/testuser/may31/orachk_node061919_053119_04448.
Please wait...
Sanitized collection is: /scratch/testuser/may31/orachk_aydv061919_053119_04448
UPLOAD [if required] - /scratch/testuser/may31/orachk_node061919_053119_04448.ziporachk -rmap all|comma_delimited_list_of_element_IDsYou can also use orachk -rmap to lookup a value sanitized by Oracle
                Trace File Analyzer.
                        
Example 20-17 Printing the Reverse Map of Sanitized Elements
orachk -rmap MF_NK1,fcb63u2
________________________________________________________________________________
| Entity Type | Substituted Entity Name | Original Entity Name |
________________________________________________________________________________
| dbname      | MF_NK1               | HR_DB1            |
| dbname      | fcb63u2              | rac12c2           |
________________________________________________________________________________
orachk -rmap allRunning the Disk Diagnostic Tool
Use the Disk Diagnostic Tool to help identify the cause of disk problems.
The tool produces a list of 14 disk checks for each node. To display details, where n represents the disk resource name, enter the following command:
# odaadmcli stordiag n# odaadmcli stordiag pd_00Parent topic: Troubleshooting Oracle Database Appliance
Running the Oracle Database Appliance Hardware Monitoring Tool
The Oracle Database Appliance Hardware Monitoring Tool displays the status of different hardware components in Oracle Database Appliance server.
The tool is implemented with the Trace File Analyzer collector. Use the tool both on bare-metal and on virtualized systems. The Oracle Database Appliance Hardware Monitoring Tool reports information only for the node on which you run the command. The information it displays in the output depend on the component that you select to review.
Bare Metal Platform
You can see the list of monitored components by running the command odaadmcli show -h
To see information about specific components, use the command syntax odaadmcli show component, where component is the hardware component that you want to query. For example, the command odaadmcli show power shows information specifically about the Oracle Database Appliance power supply:
                     
# odaadmcli show power
NAME            HEALTH  HEALTH_DETAILS   PART_NO.  	SERIAL_NO.
Power_Supply_0  OK            -          7079395     476856Z+1514CE056G
(Continued)
LOCATION    INPUT_POWER   OUTPUT_POWER   INLET_TEMP         EXHAUST_TEMP
PS0         Present       112 watts      28.000 degree C    34.938 degree CVirtualized Platform
You can see the list of monitored components by running the command oakcli show -h
To see information about specific components, use the command syntax oakcli show component, where component is the hardware component that you want to query. For example, the command oakcli show power shows information specifically about the Oracle Database Appliance power supply:
                     
# oakcli show power
NAME            HEALTH HEALTH_DETAILS PART_NO. SERIAL_NO.          
Power Supply_0  OK      -             7047410   476856F+1242CE0020
Power Supply_1  OK     -              7047410   476856F+1242CE004J
(Continued)
LOCATION  INPUT_POWER OUTPUT_POWER INLET_TEMP         EXHAUST_TEMP
PS0       Present     88 watts     31.250 degree C    34.188 degree C
PS1       Present     66 watts     31.250 degree C    34.188 degree C
Note:
Oracle Database Appliance Server Hardware Monitoring Tool is enabled during initial startup of ODA_BASE on Oracle Database Appliance Virtualized Platform. When it starts, the tool collects base statistics for about 5 minutes. During this time, the tool displays the message "Gathering Statistics…" message.
Parent topic: Troubleshooting Oracle Database Appliance
Disabling the Browser User Interface
You can also disable the Browser User Interface. Disabling the Browser User Interface means you can only manage your appliance through the command-line interface.
Parent topic: Troubleshooting Oracle Database Appliance
Preparing Log Files for Oracle Support Services
If you have a system fault that requires help from Oracle Support Services, then you may need to provide log records to help Oracle support diagnose your issue.
- Use the Bill Of Materials report saved in the
                        /opt/oracle/dcs/Inventory/directory, to enable Oracle Support to help troubleshoot errors, if necessary.
- You can use Trace File Collector (the tfactlcommand) to collect all log files for the Oracle Database Appliance components.
- Use the command odaadmcli manage diagcollectto collect diagnostic files to send to Oracle Support Services.
- Use the Error Correlation report available in the
                        /opt/oracle/dcs/da/da_repodirectory.
The odaadmcli manage diagcollect
                command consolidates information from log files stored on Oracle Database Appliance
                into a single log file for use by Oracle Support Services. The location of the file
                is specified in the command output. 
                     
Example 20-18 Collecting log file information for a time period, masking sensitive data
# odaadmcli manage diagcollect --dataMask --fromTime 2019-08-12 --toTime 2019-08-25
DataMask is set as true
FromTime is set as: 2019-08-12
ToTime is set as: 2019-08-25
TFACTL command is: /opt/oracle/tfa/tfa_home/bin/tfactl
Data mask is set.
Collect data from 2019-08-12
Collect data to 2019-08-25Parent topic: Troubleshooting Oracle Database Appliance