Troubleshooting guide

Troubleshooting Core Container Failures

The deployment of the Omnia core container may fail for the following reasons:

  • The omnia.sh script aborts early.

  • podman pull fails.

  • The Omnia core container starts but cannot write to the shared path.

Resolution:

Peform the following steps:

  1. Verify the Omnia core container status using the following command:

podman ps --format 'table {{.Names}}\t{{.Status}}'
  1. Review Omnia core container logs using the following command:

podman logs -n 200 omnia_core
  1. Verify time synchronization on the OIM. TLS communication between Omnia containers depends on accurate time synchronization.

    Use the following commands to check time synchronization status:

    timedatectl status
    chronyc tracking || chronyc sources -v
    

    If time drift is detected, enable Chrony or NTP and re-synchronize time before proceeding.

  2. Ensure that the OIM hostname meets the following requirements. If not, rename the host to comply with the hostname rules and re-run the omnia.sh script.

  • No dot (.), underscore (_), or comma (,)

  • No leading or trailing hyphen (-)

  • No uppercase characters

  • Must not start with a digit

  • Fully qualified domain name (FQDN) length must be ≤ 64 characters

  1. Check whether Podman is installed and able to pull images. If not, install podman and verify podman login.

  2. Verify outbound network connectivity from the OIM.

  3. Validate the NFS shared path and SELinux context. To fix any issues related to NFS, export the NFS share with no_root_squash enabled, ensure the shared path has 755 permissions, and bind the shared path with SELinux relabeling.

podman run --rm -v /shared:/mnt:z registry.access.redhat.com/ubi10/ubi sh -lc 'touch /mnt/.rw'

If unsure, start with a local shared path and switch to NFS later.

8. After applying the fixes, re-run the omnia.sh script to deploy the Omnia core container.

Troubleshooting failures during prepare OIM

The prepare OIM playbook may fail for the following reasons:

  • Certificate or TLS failures

  • Expected container not created

  • Service is running but unreachable

Resolution

Verify container inventory:

podman ps --format 'table {{.Names}}\t{{.Image}}\t{{.Status}}'

Common Container Logs and Debugging Shortcuts

Use the following commands to troubleshoot container issues across Omnia services.

  • To view list of all Omnia containers, run the following command:

podman ps -a
  • To view container logs, run the following command:

podman logs -n 200 <container>
  • To test outbound connectivity from a container, run the following command:

podman exec -it <container> sh -lc 'curl -I https://example.com'

PXE Boot Hangs During Node Replacement

When an existing node is replaced with a new node and discovery.yml is rerun, the new node may hang during PXE boot at nm-wait-online-initrd.service.

Cause: An IP address conflict occurs when the new node is assigned an IP address that is still in use by the old node on the network.

Resolution: Before adding the new node, complete the following steps:

  • Ensure the old node is powered off or disconnected from the network.

  • Verify that the IP address is not in use by any other device.

  • Rerun discovery.yml after confirming that no IP conflicts exist.

Checking and updating encrypted parameters

  1. Move to the file path where the parameters are saved (as an example, we will be using omnia_config_credentials.yml):

    cd /opt/omnia/input/project_default/
    
  2. To view the encrypted parameters:

    ansible-vault view omnia_config_credentials.yml --vault-password-file .omnia_config_credentials_key
    
  3. To edit the encrypted parameters:

    ansible-vault edit omnia_config_credentials.yml --vault-password-file .omnia_config_credentials_key
    

Checking podman container status from the OIM

  • Use this command to get a list of all running podman conatiners: podman ps

  • Check the status of any specific podman containers: podman ps -f name=<container_name>

Packages download issues during local_repo.yml playbook execution

  1. The local_repo.yml playbook generates and provides log files as part of its execution. For example, if the local repository is partially unsuccessful for nfs, analyze the issue using the following steps:

../_images/troubleshoot_local_repo.png
  1. To view the overall download status of all software in the .csv format, run the following command:

opt/omnia/log/local_repo/<arch>/software.csv

Example:

/opt/omnia/log/local_repo/x86_64/software.csv
../_images/troubleshoot_local_repo_1.png
  1. To view the overall download status of all packages and the log filenames for a specific software, run the following command:

/opt/omnia/log/local_repo/<sw>_task_results.log

Example: For nfs:

/opt/omnia/log/local_repo/x86_64/nfs_task_results.log
../_images/troubleshoot_local_repo_2.png
  1. To view the package level status, run the following command:

/opt/omnia/log/local_repo/x86_64/<sw>/status.csv

Example:

/opt/omnia/log/local_repo/x86_64/nfs/status.csv
../_images/troubleshoot_local_repo_3.png
  1. To view the issues information and the reason for job being unsuccessful, see the package_status_<pid>.log file mentioned in the <sw>_task_result.log.

Example:

/opt/omnia/log/local_repo/x86_64/nfs/logs/package_status_41422.log
../_images/troubleshoot_local_repo_4.png

Troubleshooting logs

For more information, see Logs.

Troubleshooting PowerScale isilon pods after node reboot

Why is the PowerScale (Isilon) CSI controller pod in CrashLoopBackOff after a node reboot, and how can it be resolved?

../_images/troubleshoot_powerscale_1.png ../_images/troubleshoot_powerscale.jpg

Resolution: Do the following:

  1. Inspect recent logs from the controller deployment:

    kubectl logs deploy/isilon-controller -n isilon --all-containers=true | tail -n 60
    
  2. Restart the Isilon controller deployment:

    kubectl rollout restart deployment isilon-controller -n isilon
    
  3. Restart the Isilon node daemonset:

    kubectl rollout restart daemonset isilon-node -n isilon
    

These actions ensure that any components affected by the reboot are recreated properly and resume normal operation.

Troubleshooting LDMS on the slurm nodes

../_images/troubleshoot_ldms_1.png
  1. Check the ldms aggregator and ldms store logs.

    kubectl logs -n telemetry nersc-ldms-aggr-0
    kubectl logs -n telemetry nersc-ldms-store-slurm-cluster-0
    
  2. SSH to the slurm node from where the LDMS metrics are not retrieved.

  3. Run sudo systemctl status ldmsd.sampler.service and check ldmsd service is running on the slurm nodes.

../_images/troubleshoot_ldms_2.png
  1. If the ldmsd daemon is running, check whether supported plugins are loaded using the following command:

    /opt/ovis-ldms/sbin/ldms_ls -a ovis -A conf=/opt/ovis-ldms/etc/ldms/ldmsauth.conf -p 10001 -h localhost
    
../_images/troubleshoot_ldms_3.png
  1. If ldms plugins are loaded, check the metrics of each plugin using the following command:

../_images/troubleshoot_ldms_4.png

Get the ldsm_port from the file /opt/ovis-ldms/etc/ldms/ldmsd.sampler.env and run the following command:

ldms_ls -l -a ovis -A conf=/opt/ovis-ldms/etc/ldms/ldmsauth.conf -p <ldms_port> -h localhost $(hostname)/<plugin_name>

Example:

ldms_ls -l -a ovis -A conf=/opt/ovis-ldms/etc/ldms/ldmsauth.conf -p 10001 -h localhost $(hostname)/meminfo
../_images/troubleshoot_ldms_5.png

Pulp Repository Sync and Publication Failures

  1. No Space Left on NFS Share (where Pulp is mounted).

Cause: Pulp storage runs out of disk space during sync or publish. In this case , Pulp logs show the error “No space left on device.” Check the available storage space on the NFS share.

Resolution: Increase the size of the NFS share where Pulp is mounted to free up space.

  1. Incorrect URL in local_repo_config.yml.

Cause: The repository URLs in the local_repo_config.yml file may be incorrect . The URL must point to the repository root (where the repodata directory exists) and be reachable.

Resolution: Verify and update the URLs in the local_repo_config.yml file to ensure they are correct and accessible.

  1. NFS storage configuration or performance

Cause: If Pulp is mounted on NFS, network delays can impact performance, potentially causing sync or publication issues.

Resolution: Reduce PULP_SYNC_CONCURRENCY and PULP_PUBLISH_CONCURRENCY to 1 in config.py.

Location:

vi  common/library/module_utils/local_repo/config.py
PULP_SYNC_CONCURRENCY =  1
PULP_PUBLISH_CONCURRENCY = 1

Re-run Failed Operations: After making the changes, re-run the Ansible playbook to retry the failed operations: ansible-playbook local_repo.yml.

After job submission on the Slurm cluster, compute nodes intermittently enter the DRAINED state

When Slurm nodes go into a DRAINED state after job submission, one possible cause is a failure in an epilog script under /etc/slurm/epilog.d due to incorrect file permissions.

To resolve, ensure the epilog script is executable on all Slurm nodes.

For example:

chmod 0755 /etc/slurm/epilog.d/logout_user.sh

After updating the permissions, reload the Slurm configuration:

scontrol reconfigure

InfiniBand ports remain in initializing state on hosts

In Omnia deployments using InfiniBand (IB) networking, compute or management hosts show InfiniBand ports stuck in the Initializing state after boot. Even though the physical link is up, InfiniBand communication between nodes does not work. Running the following command on the host shows the port state as Initializing:

ibstat
../_images/troubleshooting_ib.png

Cause:

The Open Subnet Manager (OpenSM) service is not running on the InfiniBand (IB) switch. Subnet Manager is a fabric‑level service that should be running on the IB switch. If OpenSM is not enabled on the IB switch, the InfiniBand fabric cannot complete initialization, causing host ports to remain in the Initializing state.

Resolution:

  1. Ensure that the Open Subnet Manager service is enabled and running on the InfiniBand switch.

  2. After enabling OpenSM on the IB switch, do the following:

    • PXE boot all the IB NIC based nodes.

    • Run the following command on the host: ibstat

    • Verify that the InfiniBand ports state transition to: State: Active

Slurm controller functional group is missing

Cause

PXE mapping file missing slurm_control_node_* groups.

Resolution

Update pxe_mapping.csv with proper controller groups.

slurm.conf missing from backup

Cause

Incomplete backup or corrupted backup directory.

Resolution

Choose a different backup or create new backup.

slurmctld not active message during rollback

Cause

Slurm controller service not running.

Resolution

Start slurmctld service manually, then retry rollback.

If you have any feedback about Omnia documentation, please reach out at omnia.readme@dell.com.