> ## Documentation Index
> Fetch the complete documentation index at: https://upstash-cloud-4725.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Hermes Setup

This guide walks you through setting up [Hermes](https://github.com/NousResearch/hermes-agent) inside an Upstash Box.

***

## 1. Create a Box

Create a keep-alive box with the **Medium** size. See the [quickstart](/box/overall/quickstart) if you haven't created one before.

<Note>
  Hermes is resource-intensive, so we recommend starting with a Medium box to ensure a smooth installation.
</Note>

<img src="https://mintcdn.com/upstash-cloud-4725/x-PVn19Uzso1wkNZ/img/hermes-setup/box-create.png?fit=max&auto=format&n=x-PVn19Uzso1wkNZ&q=85&s=66591f854dcec706809561205d4e29d3" alt="Create a Box for Hermes" width="1940" height="1188" data-path="img/hermes-setup/box-create.png" />

***

## 2. Connect via SSH

Once the box is running, connect to it via SSH from your terminal. Use your [Box API key](/box/overall/quickstart#1-get-your-api-key) as the password when prompted.

The `box-id` is the name of your box (e.g. `right-flamingo-14486`).

```bash theme={"system"}
ssh <box-id>@us-east-1.box.upstash.com
```

<img src="https://mintcdn.com/upstash-cloud-4725/x-PVn19Uzso1wkNZ/img/hermes-setup/ssh-connection.png?fit=max&auto=format&n=x-PVn19Uzso1wkNZ&q=85&s=c5410413d1afc2b220205c2b7aef3c39" alt="SSH connection to the Hermes Box" width="1940" height="1082" data-path="img/hermes-setup/ssh-connection.png" />

***

## 3. Install Hermes

Run the following command to download and install Hermes inside the box.

```bash theme={"system"}
curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
```

Follow the CLI prompts to complete the setup.

Congratulations! You have successfully set up Hermes on your Upstash Box.

***

## 4. Set Init Script for Auto-Restart

To ensure Hermes restarts automatically if the box crashes, set the startup command as an init script from the Upstash Console.

<img src="https://mintcdn.com/upstash-cloud-4725/x-PVn19Uzso1wkNZ/img/hermes-setup/init-script.png?fit=max&auto=format&n=x-PVn19Uzso1wkNZ&q=85&s=4ba50ecba2ac08e491e726f5e43189e5" alt="Hermes init script in the Upstash Console" width="1940" height="1080" data-path="img/hermes-setup/init-script.png" />

The init script to use:

```bash theme={"system"}
hermes gateway start > gateway.log 2>&1 &
```

This command runs automatically whenever the box starts, so your gateway is always available without manual intervention.
