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@deviceor:
ssh-rsa AAAA... user@deviceDo 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.pubIf 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.
