Ransomware attackers specifically target and attempt to destroy backup systems to increase the probability of payment. Hardening your system is critical. Please ensure you have reviewed your platform security using the Security Hardening Checklist
Cohesity

COHESITY Documentation

Explore our documentation to get started, discover products & new features, access troubleshooting guides, register sources, platforms support.

Products
Data Security Alliance
Visit Cohesity.com
Demos
Support
Blogs
Developers
Partner Portals
Cohesity Community
© 2026 Cohesity, Inc. All Rights Reserved.
Terms of Use|
Privacy Policy|
Legal|
  1. Home
  2. NetBackup™ Flex Scale Administrator's Guide
  3. NetBackup Flex Scale infrastructure management
  4. Node and disk management
  5. Adding a node using the REST APIs
NetBackup™ Flex Scale Administrator's Guide

Adding a node using the REST APIs

You can use REST APIs to add a node to an existing cluster.

You can find the RESTful APIs at https://ManagementServerIPorFQDN:14161/swagger/infra/v1.0/ where ManagementServerIPorFQDN is the public IP address, the FQDN, or the short host name that you specified for the NetBackup Flex Scale management server and API gateway during the cluster configuration.

If you access the NetBackup Flex Scale infrastructure management console by using the short host name from a node, set the DNS settings (name server, domain name, and search domain) or ensure that the entry for mapping the short host name to an IP address exists in the hosts file of the node.

If you are using IPv6 addresses, use the following URL syntax:https://[ManagementServerIP]:14161/swagger/infra/v1.0

See Working with NetBackup Flex Scale APIs. for more details.

Before you use the APIs, power on the node and install the NetBackup Flex Scale ISO image on the node that you want to add to the cluster. For more details, see the NetBackup Flex Scale Installation and Configuration Guide. After the ISO is installed, perform a factory reset to reset the node to its default factory settings. Ensure that the management network interface (eth1) of the node is not configured with the management IP address.

You must format the disks and ensure that no data is present on the disks; else the add node operation will fail.

Use the following APIs in the sequence listed below to add a node. For more details about the APIs, see the Veritas NetBackup Flex Scale APIs on SORT.

Note:

You can add only one node at a time using REST APIs. Use the NetBackup Flex Scale web interface to add multiple nodes simultaneously.

  1. Authenticate the user. The user must be assigned an Appliance Administrator role.
    POST /api/appliance/v1.0/authentication/login

    Specify the user name and password. The API returns a token. Copy the generated token and specify in the following format:

    Authorize: Bearer generated token

    You can also generate an API key that is valid for 10 years after the user is authenticated successfully:

    POST /api/appliance/v1.0/api-keys

    After the API key is generated, generate the token again using the following API and by specifying the user name and the generated API key:

    POST /api/appliance/v1.0/authentication/login

    Note:

    If both the password and the API key is provided with the user name to generate the token, the API considers only the password and generates the token.

  2. Discover all the spare nodes that are in the same private network as the existing cluster.
    GET /api/appliance/v1.0/storage/new-nodes

  3. Get details of a particular node that was discovered in step 1 by using its Avahi IP address.
    GET /api/appliance/v1.0/storage/new-nodes/{ipAddress}
  4. Synchronize the patch version on the cluster with the new node. All the patches that are installed on the cluster nodes are installed on the new node.
    POST /api/appliance/v1.0/upgrade

    With {"eebType": "normal"}: Payload for synchronizing patch upgrade version on new node with the cluster.

  5. Add the node to the cluster.
    POST /api/appliance/v1.0/storage/nodes
  6. Rebalance the data across all the nodes to free space on the existing cluster nodes. Rebalancing spreads data evenly across the nodes by moving the data from existing nodes to the new node.
    POST /api/appliance/v1.0/storage/rebalance
  7. Configure NetBackup on the newly added node.
    POST /api/appliance/v1.0/netbackup/add
  8. Synchronize data EEBs on the cluster with the newly added node.
    POST /api/appliance/v1.0/upgrade

    With {"eebType": "data"}: Payload for synchronizing patch upgrade version on new node with the cluster.

Feedback

Was this page helpful?
Previous

Considerations for adding a node when disaster recovery is configured

Next

Replacing a node in a cluster

Feedback

Was this page helpful?