country_code

Troubleshooting and FAQs#

_images/ov_cloud_banner.jpg

Overview#

This page provides frequently asked questions and answers. For additional support, access the NVIDIA Enterprise Support Portal by clicking here.

What are the supported platforms & web browsers?

Omniverse on DGX Cloud supports the following platforms & web browsers:

Browser

Windows

Linux

macOS

Google Chrome (v125+)

Yes

Yes

Yes

Microsoft Edge (v125+)

Yes

Yes

Yes

Note

Omniverse on DGX Cloud continues to undergo browser compatibility testing. Additional browsers and versions will be added as they are certified.

How do I change the OIDC claim name carrying the information of the admin group?

Change “groups” to “<your claim name>” in two lines of code:

_images/oidc_claim_name.jpg

Note

The claim is expected to hold a JSON array; using a single value might not be supported.

There are numerous “401 Unauthorized” entries in the backend logs resembling this pattern.
_images/unauthorized_errors.jpg

It is likely that the backend cannot reach the OIDC endpoints specified in the configuration file—particularly the JWKS and Userinfo endpoints. Verify connectivity from the backend host or container to these endpoints using the following command:

curl '*'<an OIDC API endpoint you have in your settings.toml>

Note

If your environment includes proxy servers that could block communication between the portal and OIDC endpoints, ensure the appropriate environment variables are set persistently.

export http_proxy=<your HTTP proxy>
export https_proxy=<your HTTPS proxy>
export HTTP_PROXY=<your HTTP proxy>
export HTTPS_PROXY=<your HTTPS proxy>
export NO_PROXY=<your list of URLs that don't need proxying>
If you encounter the error message ‘Failed to load streaming applications - HTTP401. Unauthorized’

This typically indicates a misconfiguration in your settings.toml file on the backend. This prevents the backend service from successfully authenticating your account with your identity provider (IDP) to retrieve the list of available applications.

If the GET request to the /apps API endpoint fails, an Unauthorized error message will be returned.

This occurs when a user hasn’t signed in through the web frontend, which is required to access the Swagger UI.