Quick Start Guide

Get your first SLYD instance up and running in under 5 minutes.

Account
Select
Deploy
Connect

Before You Begin

Make sure you have these ready

SLYD Account

Create your free account to access the platform

Sign up

Payment Method

Add a card or payment method to your account

Required for deploying instances

SSH Key Pair

Generate or have an SSH key ready for secure access

Learn how
1

Account Setup

Sign in and navigate to the marketplace

1

Sign in to your account

Navigate to slyd.com/Account/Login and sign in with your credentials. If you don't have an account yet, click "Sign Up" to create one.

2

Navigate to the Compute Marketplace

Once logged in, select "Compute Marketplace" from the left navigation menu to browse available compute resources.

Home Consumer Dashboard Compute Marketplace
2

Select Your Compute

Choose the right GPU configuration for your workload

3

Browse available configurations

The Compute Marketplace displays all available GPU instances. You can filter and compare based on:

GPU Type RTX 4090, A100, H100, etc.
VRAM 24GB, 48GB, 80GB options
Price Hourly rate comparison
Availability Real-time status
Benson AI Assistance
Coming Q2 2026

Not sure which configuration to choose? Benson AI will provide intelligent recommendations based on your workload requirements, helping you select optimal compute resources.

3

Deploy Your Instance

Configure and launch your compute instance

4

Click Deploy on your chosen configuration

After selecting a compute configuration, click the "Deploy" button to begin instance setup.

5

Configure instance details

Provide the following information:

Instance Name A descriptive name to identify your instance
Description Optional notes about the instance purpose
SSH Key Select from your saved keys or add a new one
Resource Allocation CPU cores and memory (GB) for your workload
6

Review and deploy

Verify the cost breakdown and click "Deploy Instance" to start provisioning.

SSH Key Required

SSH keys are required for secure access to your instance. If you don't have one configured yet, you'll be prompted to generate or upload one during deployment.

Need help with SSH keys? View our authentication guide

Provisioning Time

Provisioning typically takes under a minute. You'll receive a notification when your instance is ready to use.

4

Connect to Your Instance

Set up secure tunneling and SSH access

SLYD uses Cloudflare tunnels for secure SSH connections. Follow these steps to connect to your newly provisioned instance.

7

Install Cloudflared

Install the Cloudflare tunnel client on your local machine:

Windows
macOS
Linux
PowerShell

# Download cloudflared
Invoke-WebRequest -Uri https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-amd64.exe -OutFile cloudflared.exe

# Move to a directory in your PATH (optional)
Move-Item cloudflared.exe C:\Windows\System32\
Terminal

# Install using Homebrew
brew install cloudflared
Terminal

# Debian/Ubuntu
wget -q https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64.deb
sudo dpkg -i cloudflared-linux-amd64.deb

# Or via snap
sudo snap install cloudflared
8

Configure SSH proxy

Add the Cloudflare proxy configuration to your SSH config file:

~/.ssh/config

Host *.slyd.cloud
    ProxyCommand cloudflared access ssh --hostname %h
C:\Users\%USERNAME%\.ssh\config
~/.ssh/config
~/.ssh/config

Create the file if it doesn't exist. On macOS/Linux, ensure permissions: chmod 600 ~/.ssh/config

9

Get your SSH connection command

Navigate to your instance page and click the SSH button in the Actions panel to reveal your connection command.

10

Connect via SSH

Run the SSH command in your terminal, replacing the key path with your actual SSH private key:

Terminal

ssh -i ~/.ssh/your-key ubuntu@your-instance-12345.slyd.cloud
Verify Installation

Test that cloudflared is properly installed:

Terminal

cloudflared --version

Troubleshooting

"cloudflared: command not found"

  • Ensure cloudflared is installed (see Step 7)
  • Check that cloudflared is in your PATH
  • On Windows, restart your terminal after installation

"Permission denied (publickey)"

  • Verify your SSH key path is correct
  • Check that your public key is uploaded to "My Account"
  • Ensure SSH key has correct permissions: chmod 600 ~/.ssh/your-key

"Failed to connect to proxy"

  • Verify your SSH config includes the ProxyCommand (Step 8)
  • Check your internet connection
  • Ensure the instance is still running

You're all set!

Once connected, you have full SSH access to your GPU-powered instance. Start running your workloads!

Next Steps

Now that you have your first instance up and running, explore these resources: