Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
hpc-compendium
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ZIH
hpcsupport
hpc-compendium
Commits
9c8d2606
Commit
9c8d2606
authored
3 years ago
by
Martin Schroschk
Browse files
Options
Downloads
Patches
Plain Diff
Resolve issue
parent
57b29c8d
No related branches found
No related tags found
3 merge requests
!392
Merge preview into contrib guide for browser users
,
!366
Merge preview into main
,
!361
Resolve issue
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc.zih.tu-dresden.de/docs/access/ssh_login.md
+21
-1
21 additions, 1 deletion
doc.zih.tu-dresden.de/docs/access/ssh_login.md
with
21 additions
and
1 deletion
doc.zih.tu-dresden.de/docs/access/ssh_login.md
+
21
−
1
View file @
9c8d2606
...
...
@@ -68,13 +68,33 @@ have to be generated following these rules:
The generated public key is usually saved at
`~/.ssh/id_ed25519`
at your local system. To allow for
password-less SSH connection to ZIH systems, it has to be added to the file
`.ssh/authorized_keys`
within
your home directory
`/home/<zih-login>/`
at ZIH systems.
your home directory
`/home/<zih-login>/`
at ZIH systems. The public key can be transferred using
tools like
`scp`
,
`rsync`
, or
`ssh-copy-id`
. Please refer to the corresponding man page. After the
public key is in place, you can connect to ZIH systems via
```
console
marie@local$
ssh
-i
id-ed25519 <zih-login>@taurus.hrsk.tu-dresden.de
Enter passphrase for key 'id-ed25519':
```
### SSH Config
You can make the SSH login process more comfortable by creating an entry in your SSH config file. For
that, you just add en entry like this
```
bash
Host <any_name>
HostName taurus.hrsk.tu-dresden.de
User <zih-login>
IdentityFile <path_to_public_key>
```
to your
`~/.ssh/config`
and afterwards the ssh connection call is shortened to
```
console
marie@local$
ssh <any_name>
```
## Connecting from Windows
We recommend one of the following applications:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment