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™ for Kubernetes Administrator's Guide
  3. Deploying and configuring the NetBackup Kubernetes operator
  4. Troubleshooting NetBackup servers with short names
NetBackup™ for Kubernetes Administrator's Guide

Troubleshooting NetBackup servers with short names

  1. If NetBackup Kubernetes operator is not able to resolve backup server or media server based on short names, perform the following steps:
    • While fetching certificates if you get a message, EXIT STATUS 8500: Connection with the web service was not established. Then confirm from the nbcert logs whether hostname resolution successful or not. If it has failed, then perform the following steps:

    • Update the Kubernetes operator deployment.yaml and add the hostAliases in the deployment.

    • In the following hostAliases example,

      • backupserver.sample.domain.com and mediaserver.sample.domain.com are the hostnames of NetBackup primary and media server.

      • IP: 10.20.12.13 and IP: 10.21.12.13 are the IP addresses of NetBackup primary and media server.

      hostAliases:
      - hostnames:
        - backupserver.sample.domain.com
        ip: 10.20.12.13
      - hostnames:
        -  mediaserver.sample.domain.com
        ip: 10.21.12.13
      

      Copy, paste the hostAliases example details in the text editor and add to the hostAliases in the deployment.

  2. If data mover is not able to resolve short names of backup server or media server. To resolve this issue, perform the following steps:
    • Update configmap with backup server name.

    • Add datamover.hostaliases field, map with IP addresses to the hostname.

    • In the following configmap.yaml example,

      • backupserver.sample.domain.com and mediaserver.sample.domain.com are the hostnames of NetBackup primary and media server.

      • IP: 10.20.12.13 and IP: 10.21.12.13 are the IP addresses of NetBackup primary and media server.

      apiVersion: v1
      
      data:
        datamover.hostaliases: |
              10.20.12.13=backupserver.sample.domain.com
              10.21.12.13=mediaserver.sample.domain.com
        datamover.properties: |
              image=reg.domain.com/datamover/image:latest
        version: "1"
      kind: configmap
      metadata:
        name: backupserver.sample.domain.com
        namespace: kops-ns
      • Copy the configmap.yaml file details.

      • Open the text editor and past the yaml file details.

      • Then, save it with the yaml file extension to the home directory from where the Kubernetes clusters are accessible.

    • To create the configmap.yaml file, run the command kubectl create -f configmap.yaml.

    • if you update the configmap.yaml which is already created then run the command to update configmap. kubectl apply -f configmap.yaml

Feedback

Was this page helpful?
Previous

Customization of datamover properties

Next

Data mover pod schedule mechanism support

Feedback

Was this page helpful?