Locating a UUID

Locating a UUID

Each Nominode and each of the resources it contains has a UUID that is used to uniquely identify it, in case its alias changes or is duplicated.  The unique identifier can be used to pinpoint the source of unexpected behaviors. 

Locating a Nominode's UUID

There are two ways to locate a Nominode's UUID and it is helpful to follow both sets of steps to ensure that UUID in both locations match.
To view a Nominode's UUID stored in your Organization account, follow these steps:
  1. Open https://my.nomnomdata.com and click on the Login button in the upper right hand corner of the website.
  2. Log in using your Nom Nom Data account.
  3. Select Nominodes under the Manage menu in the upper right hand area of the website.
  4. Click on the name of the Nominode whose UUID you want to view.
  5. While the Nominode Configuration page is displaying, the UUID for your Nominode will be the value listed after the last forward slash ( / ) in the URL displaying in your browser's address bar.

To view a Nominode's UUID stored on the Nominode itself, follow these steps:
  1. Open a local, telnet or ssh session with your server.
  2. Navigate to the folder where your Nominode software is installed and view the config.ini file.
  3. The value after nominode_uuid = in the [CONFIG] section of the file is the UUID for your Nominode.

Locating a Project's UUID

  1. Click on Tasks near the top of the left hand navigation menu of your Nominode.
  2. Use the Project Select field at the top of the page to select the Project whose UUID you want to locate.
  3. The UUID for your Project will be the value listed between the last two slashes ( / ) in the URL displaying in your browser's address bar.

Locating a Task's UUID

  1. Click on Tasks near the top of the left hand navigation menu of your Nominode.
  2. Use the Project Select field at the top of the page to select the Project that your Task is associated with.
  3. Locate your Task in the list, using the search fields if necessary.
  4. Click on the name of your Task in the Task Name column.
  5. While the Task Details page is displaying, the UUID for your Task will be the value listed after the last forward slash ( / ) in the URL displaying in your browser's address bar.

Locating an Execution's UUID

  1. Click on Executions in the left hand navigation menu of your Nominode.
  2. Use the Project Select field at the top of the page to select the Project that your Task is associated with.
  3. Locate your Execution in the list, using the search fields if necessary.
  4. Click on the Task name in the Execution column of the specific Execution that you are interested in.
  5. While the Execution Details page is displaying, the UUID for your Execution will be the value listed after the last forward slash ( / ) in the URL displaying in your browser's address bar.

Locating a Sequence's UUID

  1. Click on Sequences in the left hand navigation menu of your Nominode.
  2. Use the Project Select field at the top of the page to select the Project that your Sequence is associated with.
  3. Locate your Sequence in the list, using the search fields if necessary.
  4. Click on the name of the Sequence in the Name column.
  5. While the Sequence Details page is displaying, the UUID for your Sequence will be the value listed after the last forward slash ( / ) in the URL displaying in your browser's address bar.
                              

Locating a Connection's UUID

  1. Click on Connections in the middle of the left hand navigation menu of your Nominode.
  2. Use the Project Select field at the top of the page to select the Project that your Connection is associated with.
  3. Locate your Connection in the list, using the search fields if necessary.
  4. Click on the alias of your Connection in the Alias column.
  5. While the Connection Details page is displaying, the UUID for your Connection will be the value listed after the last forward slash ( / ) in the URL displaying in your browser's address bar.

Locating a Shared Config's UUID

  1. Click on Shared Config in the left hand navigation menu of your Nominode.
  2. Locate your Sequence in the list, using the search field if necessary.
  3. Click on the alias of your Shared Config in the Alias column.
  4. While the Shared Config Details page is displaying, the UUID for your Shared Config will be the value listed after the last forward slash ( / ) in the URL displaying in your browser's address bar.
                              

Locating a Shared Field's UUID

  1. Click on Shared Fields in the left hand navigation menu of your Nominode.
  2. Locate your Shared Field in the list, using the search field if necessary.
  3. Click on the alias of your Shared Field in the Alias column.
  4. While the Shared Field Details page is displaying, the UUID for your Shared Field will be the value listed after the last forward slash ( / ) in the URL displaying in your browser's address bar.
                              

    • Related Articles

    • Nominode Task Updates via CLI

      Below, we will discuss retrieving, updating, creating and deleting a Task using the Nominode SDK.  Command line interaction with Tasks and other components is a cornerstone for integrating your Nominode with source control systems and continuous ...
    • Testing Your Nom Nom App

      Local Testing For Nom Nom Apps created in Python, we recommend using pytest to locally test the code that you have written.  Follow this link for a general overview on how to install and use pytest.  In this article, we will discuss a few suggestions ...
    • Using an External Process in Your Nom Nom App

      This article explains how to leverage an external process from your Nom Nom App.  Specifically it discusses how to use the Scrapy python package.  It is assumed that the reader is already familiar with the information in the Creating Your First Nom ...
    • Creating Your First Nom Nom App

      In this tutorial, we will be examining the contents of the template Nom Nom App generated from the SDK and making it available to Tasks on your Nominode. Prerequisites Python 3.7.4 (or newer) https://www.python.org/downloads/ Docker 19.03 (or newer) ...
    • Changing a Nominode's Configuration

      Switching from a Local Database to a Remote Database Open a local, telnet or ssh session with your server. Navigate to the folder where your Nominode software is installed and execute these commands: ./docker-compose exec mysql mysqldump -u root ...