How to Submit SSH Key for GPU Server Activation

After purchasing a GPU Server, your service may show Awaiting SSH Key. To activate the server, please paste your SSH Public Key into the SSH Public Key box and click Save & Activate. Your SSH public key should look like this:

ssh-ed25519 AAAA... user@device

or:

ssh-rsa AAAA... user@device

Do not paste your private key.

---

Windows

Open PowerShell and run:

Get-Content "$env:USERPROFILE\.ssh\id_ed25519.pub"

If your key name is different, check available public keys:

Get-ChildItem "$env:USERPROFILE\.ssh\*.pub"

Copy the full line and paste it into the SSH Public Key box. If you do not have an SSH key, generate one:

ssh-keygen -t ed25519 -f "$env:USERPROFILE\.ssh\gpu-vps" -C "vps-malaysia-gpu"

Then copy it:

Get-Content "$env:USERPROFILE\.ssh\gpu-vps.pub"

---

macOS / Linux

Open Terminal and run:

cat ~/.ssh/id_ed25519.pub

If you do not have an SSH key, generate one:

ssh-keygen -t ed25519 -f ~/.ssh/gpu-vps -C "vps-malaysia-gpu"

Then copy it:

cat ~/.ssh/gpu-vps.pub

---

Important

Only paste the public key. Correct:

ssh-ed25519 AAAA...

Wrong:

-----BEGIN OPENSSH PRIVATE KEY-----

Never share or paste your private key. Your private key must stay on your own computer.

Was this answer helpful? 0 Users Found This Useful (0 Votes)