Connect a Lambda GPU instance to OpenResearch as a self-managed instance. This lets OpenResearch SSH into your machine to run experiments.
Before OpenResearch can connect, your instance needs to trust OpenResearch's public key. There are two ways to do this depending on whether you've already created your instance.
Go to SSH Keys in the Lambda dashboard and click Add SSH key. Paste OpenResearch's public key and give it a name (e.g. "OpenResearch"). Make sure to select this key when launching new instances.
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcZEFwBtpplE56F4R6Bc7iJH8fSJ4y7IuRkA/OuGWll [email protected]

SSH into your instance and run:
mkdir -p ~/.ssh && echo "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIcZEFwBtpplE56F4R6Bc7iJH8fSJ4y7IuRkA/OuGWll [email protected]" >> ~/.ssh/authorized_keys
See SSH Keys for more details.
In the Lambda dashboard, find your instance and note its IP address. Lambda instances use the default SSH port (22) and the ubuntu user.
Go to your project's Compute tab, click New Instance, and select Self-managed. Fill in the fields:
| Field | Value |
|---|---|
| Hostname | Your instance's IP address |
| Port | Leave empty (defaults to 22) |
| Username | ubuntu |
Once added, OpenResearch will connect to the instance and show it as online. You can then use it to run experiments.