github.com/smintz/nomad@v0.8.3/website/source/docs/commands/server/force-leave.html.md.erb (about)

     1  ---
     2  layout: "docs"
     3  page_title: "Commands: server force-leave"
     4  sidebar_current: "docs-commands-server-force-leave"
     5  description: >
     6    The server force-leave command is used to force a server into the "left" state.
     7  ---
     8  
     9  # Command: server force-leave
    10  
    11  The `server force-leave` command forces a server to enter the "left" state.
    12  This can be used to eject server nodes which have failed and will not rejoin
    13  the cluster. Note that if the server is actually still alive, it will
    14  eventually rejoin the cluster again.
    15  
    16  ## Usage
    17  
    18  ```
    19  nomad server force-leave [options] <node>
    20  ```
    21  
    22  This command expects only one argument - the node which should be forced
    23  to enter the "left" state.
    24  
    25  ## General Options
    26  
    27  <%= partial "docs/commands/_general_options" %>
    28  
    29  ## Examples
    30  
    31  Force-leave the server "node1":
    32  
    33  ```
    34  $ nomad server force-leave node1
    35  ```