github.com/adityamillind98/nomad@v0.11.8/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-session 34 $ nomad ui 35 Opening URL "http://127.0.0.1:4646" 36 ``` 37 38 Open the UI directly to look at a job: 39 40 ```shell-session 41 $ nomad ui redis-job 42 http://127.0.0.1:4646/ui/jobs/redis-job 43 ``` 44 45 Open the UI directly to look at an allocation: 46 47 ```shell-session 48 $ nomad ui d4005969 49 Opening URL "http://127.0.0.1:4646/ui/allocations/d4005969-b16f-10eb-4fe1-a5374986083d" 50 ```