All Guides
SSH-Schluessel erstellen und verwenden
Erstellen Sie ein SSH-Schluesselpaar fuer sichere Serververbindungen.
Beginner10 Min.
Setup Steps
1. Generate an SSH key pair:
ssh-keygen -t ed25519 -C "email@example.com"2. Accept the default location (~/.ssh/id_ed25519)
3. Set a passphrase (recommended)
4. View the public key:
cat ~/.ssh/id_ed25519.pub5. Copy the key to the server:
ssh-copy-id -i ~/.ssh/id_ed25519.pub user@server_ip6. Now you can connect without a password:
ssh user@server_ip7. Create an SSH config file (~/.ssh/config):
Host myserver
HostName 192.168.1.100
User username
Port 22
IdentityFile ~/.ssh/id_ed255198. Connect with a short command:
ssh myserver9. SSH agent usage:
eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed2551910. Add SSH key to GitHub:
GitHub > Settings > SSH and GPG keys > New SSH key
Related Guides
Git und GitHub Einrichtung
Installieren Sie Git und verwalten Sie Projekte mit GitHub.
VS Code Einrichtung und Erweiterungen
Installieren Sie VS Code und erweitern Sie es mit Entwickler-Erweiterungen.
Node.js App-Verwaltung mit PM2
Verwalten Sie Ihre Node.js-Apps in der Produktion mit PM2.
GitHub Actions CI/CD Einrichtung
Erstellen Sie eine automatisierte Test-, Build- und Deploy-Pipeline.