github.com/iqoqo/nomad@v0.11.3-0.20200911112621-d7021c74d101/website/pages/docs/commands/ui.mdx (about)

     1  ---
     2  layout: docs
     3  page_title: 'Commands: ui'
     4  sidebar_title: ui
     5  description: |
     6    The ui command is used to open the Nomad Web UI.
     7  ---
     8  
     9  # Command: ui
    10  
    11  The `ui` command is used to open the Nomad Web UI.
    12  
    13  ## Usage
    14  
    15  ```plaintext
    16  nomad ui [options] <identifier>
    17  ```
    18  
    19  The `ui` command can be called with no arguments, in which case the UI homepage
    20  will be opened in the default browser.
    21  
    22  An identifier may be provided, in which case the UI will be opened to view the
    23  details for that object. Supported identifiers are jobs, allocations and nodes.
    24  
    25  ## General Options
    26  
    27  @include 'general_options.mdx'
    28  
    29  ## Examples
    30  
    31  Open the UI homepage:
    32  
    33  ```shell-sessionnomad ui
    34  Opening URL "http://127.0.0.1:4646"
    35  ```
    36  
    37  Open the UI directly to look at a job:
    38  
    39  ```shell-sessionnomad ui redis-job
    40  http://127.0.0.1:4646/ui/jobs/redis-job
    41  ```
    42  
    43  Open the UI directly to look at an allocation:
    44  
    45  ```shell-sessionnomad ui d4005969
    46  Opening URL "http://127.0.0.1:4646/ui/allocations/d4005969-b16f-10eb-4fe1-a5374986083d"
    47  ```