> ## Documentation Index
> Fetch the complete documentation index at: https://novita.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Arrêter les sandboxes en cours d’exécution

export const SandboxCliConfigHint = () => {
  if (typeof document === "undefined") {
    return null;
  } else {
    return <Note>Before running the command-line related example code in this document, please refer to the <Link href="/docs/fr/guides/sandbox-cli">tutorial</Link> to install the CLI and complete <Link href="/docs/fr/guides/sandbox-cli-auth">authentication</Link>.</Note>;
  }
};

Vous pouvez utiliser la commande CLI pour arrêter les sandboxes en cours d’exécution.

<SandboxCliConfigHint />

## Arrêter des sandboxes par id

Pour arrêter des sandboxes spécifiées, exécutez la commande suivante :

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox kill <sandbox-id1> [<sandbox-id2>...]
```

## Arrêter toutes les sandboxes

Pour arrêter toutes les sandboxes en cours d’exécution, exécutez la commande suivante :

```bash Bash icon="terminal" theme={"system"}
novita-sandbox-cli sandbox kill --all
```
