Please enter search query.
Search <book_title>...
Veritas NetBackup™ Flex Scale Installation and Configuration Guide
Last Published:
2022-05-11
Product(s):
Appliances (2.1)
Platform: NetBackup Flex Scale OS
- Preparing for NetBackup Flex Scale deployment
- Configuring NetBackup Flex Scale
- Troubleshooting NetBackup Flex Scale deployment
- NetBackup Flex Scale upgrades and patch management
- Removing NetBackup Flex Scale
- Appendix A. Installing NetBackup Flex Scale
Performing a patch upgrade using REST APIs
You can perform a patch upgrade using REST APIs.
To download a patch using REST APIs
- (Optional) Upload a patch RPM package file to the cluster. This also downloads the patch directly.
POST /api/appliance/v1.0/upgrade/upload
Usually, the patch size is above 9 GB so uploading a patch takes about 1 hour.
- Find the list of all the available patches (downloadable/downloaded/installed).
GET /api/appliance/v1.0/upgrade/patches
- Find the summary of a specific patch.
GET /api/appliance/v1.0/upgrade/patches/{patchName}
- (Optional) Find the directory path where the patch should be placed.
GET /api/appliance/v1.0/upgrade/path
- Download the patch from the SORT server.
PATCH / api/appliance/v1.0/upgrade/patches/{patchName}
- You can find the details of the progress of the patch download using the task ID.
GET /api/appliance/v1.0/tasks/{taskId}
- Install the patch.
PATCH /api/appliance/v1.0/upgrade/patches/{patchName}
- You can find the details of the progress of the patch installation using the task ID.
GET /api/appliance/v1.0/tasks/{taskId}