github.com/smintz/nomad@v0.8.3/website/source/intro/getting-started/ui.html.md (about)

     1  ---
     2  layout: "intro"
     3  page_title: "Nomad Web UI"
     4  sidebar_current: "getting-started-ui"
     5  description: |-
     6    Visit the Nomad Web UI to inspect jobs, allocations, and more.
     7  ---
     8  
     9  # Nomad Web UI
    10  
    11  At this point we have a fully functioning cluster with a job running in it. We have
    12  learned how to inspect a job using `nomad status`, next we'll learn how to inspect
    13  a job in the web client.
    14  
    15  ## Opening the Web UI
    16  
    17  As long as Nomad is running, the Nomad UI is also running. It is hosted at the same address
    18  and port as the Nomad HTTP API under the `/ui` namespace.
    19  
    20  With Nomad running, visit [http://localhost:4646](http://localhost:4646) to open the Nomad UI.
    21  
    22  [![Nomad UI Jobs List][img-jobs-list]][img-jobs-list]
    23  
    24  If you can't connect it's possible that Vagrant was unable to properly map the
    25  port from your host to the VM. Your `vagrant up` output will contain the new
    26  port mapping:
    27  
    28  ```text
    29  ==> default: Fixed port collision for 4646 => 4646. Now on port 2200.
    30  ```
    31  
    32  In the case above you would connect to
    33  [http://localhost:2200](http://localhost:2200) instead.
    34  
    35  ## Inspecting a Job
    36  
    37  You should be automatically redirected to `/ui/jobs` upon visiting the UI in your browser. This
    38  pages lists all jobs known to Nomad, regardless of status. Click the `example` job to inspect it.
    39  
    40  [![Nomad UI Job Detail][img-job-detail]][img-job-detail]
    41  
    42  The job detail page shows pertinent information about the job, including overall status as well as
    43  allocation statuses broken down by task group. It is similar to the `nomad status` CLI command.
    44  
    45  Click on the `cache` task group to drill into the task group detail page. This page lists each allocation
    46  for the task group.
    47  
    48  [![Nomad UI Task Group Detail][img-task-group-detail]][img-task-group-detail]
    49  
    50  Click on the allocation in the allocations table. This page lists all tasks for an allocation as well
    51  as the recent events for each task. It is similar to the `nomad alloc status` command.
    52  
    53  [![Nomad UI Alloc Status][img-alloc-status]][img-alloc-status]
    54  
    55  The Nomad UI offers a friendly and visual alternative experience to the CLI.
    56  
    57  ## Next Steps
    58  
    59  We've now concluded the getting started guide, however there are a number
    60  of [next steps](next-steps.html) to get started with Nomad.
    61  
    62  [img-jobs-list]: /assets/images/intro-ui-jobs-list.png
    63  [img-job-detail]: /assets/images/intro-ui-job-detail.png
    64  [img-task-group-detail]: /assets/images/intro-ui-task-group-detail.png
    65  [img-alloc-status]: /assets/images/intro-ui-alloc-status.png