Hey Everyone, today we would be discussing here about how to update the dcs utilities in an Oracle database server(DBCS) in OCI.
Step 1: Use the below command to find the current version of dcs utilities
[root@testdb01 ~]# rpm -qa | grep dcs
dcs-cli-22.1.3.1.0_220413.0622-1.x86_64
dcs-admin-22.1.1.2.0_220324.0630-1.x86_64
dcs-agent-22.2.1.0.0_220512.1725-8.x86_64
Step 2: Use the below command to update the dcs utilities.
[root@testdb01 ~]# cliadm update-dbcli
Job details
----------------------------------------------------------------
ID: c345345-e543-4394-81b6-2c6e570bb3e5
Description: DcsCli patching
Status: Created
Created: May 29, 2022 5:40:23 AM EDT
Message: Dcs cli will be updated
Step 3: Track the status of the update using the below command. Replace the ID with your ID.
[root@testdb01 ~]# dbcli describe-job -i c345345-e543-4394-81b6-2c6e570bb3e5
Job details
----------------------------------------------------------------
ID: c5b46c03-e543-4394-81b6-2c6e570bb3e5
Description: DcsCli patching
Status: Success
Created: May 29, 2022 5:40:23 AM EDT
Progress: 100%
Message:
Step 4: Check back the status if the dcs utilities post the update.
[root@testdb01 ~]# rpm -qa | grep dcs
dcs-admin-22.1.1.2.0_220324.0630-1.x86_64
dcs-agent-22.2.1.0.0_220512.1725-8.x86_64
dcs-cli-22.2.1.0.0_220512.1725-1.x86_64
Comments