github.com/smintz/nomad@v0.8.3/website/source/docs/commands/ui.html.md.erb (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Commands: ui"
     4  sidebar_current: "docs-commands-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  ```
    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  
    26  ## General Options
    27  
    28  <%= partial "docs/commands/_general_options" %>
    29  
    30  ## Examples
    31  
    32  Open the UI homepage:
    33  
    34  ```
    35  $ nomad ui
    36  Opening URL "http://127.0.0.1:4646"
    37  ```
    38  
    39  Open the UI directly to look at a job:
    40  
    41  ```
    42  $ nomad ui redis-job
    43  http://127.0.0.1:4646/ui/jobs/redis-job
    44  ```
    45  
    46  Open the UI directly to look at an allocation:
    47  
    48  ```
    49  $ nomad ui d4005969
    50  Opening URL "http://127.0.0.1:4646/ui/allocations/d4005969-b16f-10eb-4fe1-a5374986083d"
    51  ```