SSH connection from Mac/Linux
SSH on Mac/Linux
Opening terminal
- Mac: Cmd+Space → "Terminal"
- Linux: Ctrl+Alt+T
Connecting
ssh user@yourdomain.com -p 7777
With SSH key
# Generate key
ssh-keygen -t ed25519 -C "email@example.com"
# Connect with key
ssh -i ~/.ssh/id_ed25519 user@server -p 7777
SSH config
Create ~/.ssh/config:
Host myserver
HostName yourdomain.com
User user
Port 7777
IdentityFile ~/.ssh/id_ed25519
Then: ssh myserver
Need help?
We're here for you! Running into issues or have questions? Our support team is happy to help you personally. Drop us a message through the ticket system - we usually respond within a few hours and love helping you find the best solution.
Was dit artikel nuttig?
0 van 0 vonden dit nuttig